├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── JZGlitchLabel.h │ └── JZGlitchLabel.m ├── _Pods.xcodeproj ├── Example ├── Tests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── Tests-Info.plist ├── JZGlitchLabel │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── JZViewController.h │ ├── JZAppDelegate.h │ ├── JZGlitchLabel-Prefix.pch │ ├── main.m │ ├── Images.xcassets │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Main.storyboard │ ├── JZGlitchLabel-Info.plist │ ├── JZAppDelegate.m │ ├── JZViewController.m │ └── Launch Screen.storyboard ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── JZGlitchLabel │ │ │ └── JZGlitchLabel.h │ ├── Target Support Files │ │ ├── JZGlitchLabel │ │ │ ├── JZGlitchLabel-prefix.pch │ │ │ ├── JZGlitchLabel.modulemap │ │ │ ├── JZGlitchLabel-dummy.m │ │ │ ├── JZGlitchLabel-umbrella.h │ │ │ ├── JZGlitchLabel.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-JZGlitchLabel_Tests │ │ │ ├── Pods-JZGlitchLabel_Tests.modulemap │ │ │ ├── Pods-JZGlitchLabel_Tests-dummy.m │ │ │ ├── Pods-JZGlitchLabel_Tests-umbrella.h │ │ │ ├── Pods-JZGlitchLabel_Tests.debug.xcconfig │ │ │ ├── Pods-JZGlitchLabel_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-JZGlitchLabel_Tests-acknowledgements.markdown │ │ │ ├── Pods-JZGlitchLabel_Tests-acknowledgements.plist │ │ │ ├── Pods-JZGlitchLabel_Tests-frameworks.sh │ │ │ └── Pods-JZGlitchLabel_Tests-resources.sh │ │ └── Pods-JZGlitchLabel_Example │ │ │ ├── Pods-JZGlitchLabel_Example.modulemap │ │ │ ├── Pods-JZGlitchLabel_Example-dummy.m │ │ │ ├── Pods-JZGlitchLabel_Example-umbrella.h │ │ │ ├── Pods-JZGlitchLabel_Example.debug.xcconfig │ │ │ ├── Pods-JZGlitchLabel_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-JZGlitchLabel_Example-acknowledgements.markdown │ │ │ ├── Pods-JZGlitchLabel_Example-acknowledgements.plist │ │ │ ├── Pods-JZGlitchLabel_Example-frameworks.sh │ │ │ └── Pods-JZGlitchLabel_Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── JZGlitchLabel.podspec.json │ └── Pods.xcodeproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── JZGlitchLabel.xcscheme │ │ └── project.pbxproj ├── JZGlitchLabel.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── JZGlitchLabel-Example.xcscheme │ └── project.pbxproj ├── Podfile.lock ├── Podfile └── JZGlitchLabel.xcworkspace │ └── contents.xcworkspacedata ├── DemoPic ├── JZGlitchLabel.gif └── JZGlitchLabel.jpg ├── .travis.yml ├── .gitignore ├── LICENSE ├── JZGlitchLabel.podspec └── README.md /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/JZGlitchLabel/JZGlitchLabel.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JZGlitchLabel.h -------------------------------------------------------------------------------- /DemoPic/JZGlitchLabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/DemoPic/JZGlitchLabel.gif -------------------------------------------------------------------------------- /DemoPic/JZGlitchLabel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/DemoPic/JZGlitchLabel.jpg -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // The contents of this file are implicitly included at the beginning of every test case source file. 2 | 3 | #ifdef __OBJC__ 4 | 5 | 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel.modulemap: -------------------------------------------------------------------------------- 1 | framework module JZGlitchLabel { 2 | umbrella header "JZGlitchLabel-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_JZGlitchLabel : NSObject 3 | @end 4 | @implementation PodsDummy_JZGlitchLabel 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_JZGlitchLabel_Tests { 2 | umbrella header "Pods-JZGlitchLabel_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_JZGlitchLabel_Example { 2 | umbrella header "Pods-JZGlitchLabel_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_JZGlitchLabel_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_JZGlitchLabel_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_JZGlitchLabel_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_JZGlitchLabel_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "JZGlitchLabel.h" 4 | 5 | FOUNDATION_EXPORT double JZGlitchLabelVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char JZGlitchLabelVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_JZGlitchLabel_TestsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_JZGlitchLabel_TestsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_JZGlitchLabel_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_JZGlitchLabel_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/JZGlitchLabel" "${PODS_ROOT}/Headers/Public" 3 | PODS_ROOT = ${SRCROOT} 4 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - JZGlitchLabel (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - JZGlitchLabel (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | JZGlitchLabel: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | JZGlitchLabel: a09109f77d950d43708e22b184a4601a94711536 13 | 14 | COCOAPODS: 0.39.0 15 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - JZGlitchLabel (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - JZGlitchLabel (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | JZGlitchLabel: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | JZGlitchLabel: a09109f77d950d43708e22b184a4601a94711536 13 | 14 | COCOAPODS: 0.39.0 15 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // JZViewController.h 3 | // JZGlitchLabel 4 | // 5 | // Created by Fincher Justin on 11/07/2015. 6 | // Copyright (c) 2015 Fincher Justin. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface JZViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | use_frameworks! 3 | 4 | target 'JZGlitchLabel_Example', :exclusive => true do 5 | pod "JZGlitchLabel", :path => "../" 6 | end 7 | 8 | target 'JZGlitchLabel_Tests', :exclusive => true do 9 | pod "JZGlitchLabel", :path => "../" 10 | 11 | 12 | end 13 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // JZAppDelegate.h 3 | // JZGlitchLabel 4 | // 5 | // Created by Fincher Justin on 11/07/2015. 6 | // Copyright (c) 2015 Fincher Justin. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface JZAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZGlitchLabel-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | @import UIKit; 15 | @import Foundation; 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // JZGlitchLabel 4 | // 5 | // Created by Fincher Justin on 11/07/2015. 6 | // Copyright (c) 2015 Fincher Justin. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "JZAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([JZAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/JZGlitchLabel.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "JZGlitchLabel" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-JZGlitchLabel_Tests 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/JZGlitchLabel.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "JZGlitchLabel" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-JZGlitchLabel_Tests 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/JZGlitchLabel.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "JZGlitchLabel" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-JZGlitchLabel_Example 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/JZGlitchLabel.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "JZGlitchLabel" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-JZGlitchLabel_Example 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | script: 12 | - set -o pipefail && xcodebuild test -workspace Example/JZGlitchLabel.xcworkspace -scheme JZGlitchLabel-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty 13 | - pod lib lint 14 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JZGlitchLabel.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "JZGlitchLabel", 3 | "version": "0.1.0", 4 | "summary": "UIView with Glitch effect", 5 | "homepage": "https://github.com/JustinFincher/JZGlitchLabel", 6 | "license": "MIT", 7 | "authors": { 8 | "Fincher Justin (A.k.a JustZht)": "zhtsu47@me.com" 9 | }, 10 | "source": { 11 | "git": "https://github.com/JustinFincher/JZGlitchLabel.git", 12 | "tag": "0.1.0" 13 | }, 14 | "platforms": { 15 | "ios": "7.0" 16 | }, 17 | "requires_arc": true, 18 | "source_files": "Pod/Classes/**/*", 19 | "resource_bundles": { 20 | "JZGlitchLabel": [ 21 | "Pod/Assets/*.png" 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // JZGlitchLabelTests.m 3 | // JZGlitchLabelTests 4 | // 5 | // Created by Fincher Justin on 11/07/2015. 6 | // Copyright (c) 2015 Fincher Justin. All rights reserved. 7 | // 8 | 9 | @import XCTest; 10 | 11 | @interface Tests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation Tests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Fincher Justin 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Pod/Classes/JZGlitchLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // JZGlitchLabel.h 3 | // JZGlitchLabel 4 | // 5 | // Created by Fincher Justin on 15/11/7. 6 | // Copyright © 2015年 Fincher Justin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface JZGlitchLabel : UIView 12 | 13 | @property (nonatomic) UILabel *Label; 14 | @property (nonatomic) NSString *ToString; 15 | @property (nonatomic) NSString *FromString; 16 | @property (nonatomic) NSUInteger TotalStep; 17 | @property (nonatomic) NSUInteger CurrentStep; 18 | @property (nonatomic) CGFloat MinFontSize; 19 | @property (nonatomic) CGFloat MaxFontSize; 20 | @property (nonatomic) CGFloat MinFontWeight; 21 | @property (nonatomic) CGFloat MaxFontWeight; 22 | @property (nonatomic) CGFloat ToFontSize; 23 | @property (nonatomic) CGFloat ToFontWeight; 24 | @property (nonatomic) int GlitchPara; 25 | @property (nonatomic) CGFloat Interval; 26 | 27 | - (void)performGlitchTransformTo:(NSString *)String 28 | WithSteps:(NSUInteger)Step 29 | WithInterval:(CGFloat)TimeInterval 30 | WithFontSize:(CGFloat)FontSize 31 | WithFontWeight:(CGFloat)FontWeight 32 | WithGlitchParameter:(int)Para; 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /JZGlitchLabel.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint JZGlitchLabel.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = "JZGlitchLabel" 11 | s.version = "0.1.1" 12 | s.summary = "UIView with Glitch effect" 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.homepage = "https://github.com/JustinFincher/JZGlitchLabel" 21 | s.license = 'MIT' 22 | s.author = { "Fincher Justin (A.k.a JustZht)" => "zhtsu47@me.com" } 23 | s.source = { :git => "https://github.com/JustinFincher/JZGlitchLabel.git", :tag => s.version.to_s } 24 | # s.social_media_url = 'https://twitter.com/' 25 | 26 | s.platform = :ios, '7.0' 27 | s.requires_arc = true 28 | 29 | s.source_files = 'Pod/Classes/**/*' 30 | s.resource_bundles = { 31 | 'JZGlitchLabel' => ['Pod/Assets/*.png'] 32 | } 33 | 34 | end 35 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## JZGlitchLabel 5 | 6 | Copyright (c) 2015 Fincher Justin 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## JZGlitchLabel 5 | 6 | Copyright (c) 2015 Fincher Justin 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } -------------------------------------------------------------------------------- /Example/JZGlitchLabel/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZGlitchLabel-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | Launch Screen 29 | UIMainStoryboardFile 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // JZAppDelegate.m 3 | // JZGlitchLabel 4 | // 5 | // Created by Fincher Justin on 11/07/2015. 6 | // Copyright (c) 2015 Fincher Justin. All rights reserved. 7 | // 8 | 9 | #import "JZAppDelegate.h" 10 | 11 | @implementation JZAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 22 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2015 Fincher Justin <zhtsu47@me.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | JZGlitchLabel 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2015 Fincher Justin <zhtsu47@me.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | JZGlitchLabel 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/JZGlitchLabel.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 45 | 46 | 52 | 53 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # JZGlitchLabel 2 | ![JZGlitchLabel.jpg](https://github.com/JustinFincher/JZGlitchLabel/raw/master/DemoPic/JZGlitchLabel.jpg) 3 | 4 | [![CI Status](http://img.shields.io/travis/Fincher Justin/JZGlitchLabel.svg?style=flat)](https://travis-ci.org/Fincher Justin/JZGlitchLabel) 5 | [![Version](https://img.shields.io/cocoapods/v/JZGlitchLabel.svg?style=flat)](http://cocoapods.org/pods/JZGlitchLabel) 6 | [![License](https://img.shields.io/cocoapods/l/JZGlitchLabel.svg?style=flat)](http://cocoapods.org/pods/JZGlitchLabel) 7 | [![Platform](https://img.shields.io/cocoapods/p/JZGlitchLabel.svg?style=flat)](http://cocoapods.org/pods/JZGlitchLabel) 8 | 9 | #Introduction 10 | JZGlitchLabel is a .... UIView with Glitch effect you can see in after effect project. 11 | DemoGif: 12 | ![JZGlitchLabel.gif](https://github.com/JustinFincher/JZGlitchLabel/raw/master/DemoPic/JZGlitchLabel.gif) 13 | 14 | ## Usage 15 | 16 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 17 | 18 | ``` 19 | GLabel = [[JZGlitchLabel alloc] initWithFrame:CGRectMake(0, 20, self.view.frame.size.width,300)]; 20 | GLabel.Label.text = @"T"; 21 | GLabel.Label.font = [UIFont systemFontOfSize:150.0f weight:40]; 22 | 23 | GLabel.MinFontSize = 60; 24 | GLabel.MaxFontSize = 160; 25 | GLabel.MinFontWeight = 20; 26 | GLabel.MaxFontWeight = 40; 27 | 28 | [self.view addSubview:GLabel]; 29 | 30 | //Use this to make a glitch animation 31 | [GLabel performGlitchTransformTo:@"You want"] 32 | WithSteps:30 33 | WithInterval:0.08 34 | WithFontSize:130 35 | WithFontWeight:50 36 | WithGlitchParameter:20]; 37 | ``` 38 | 39 | **MinFontSize**: MinFontSize when in Glitch 40 | **MaxFontSize**: MaxFontSize when in Glitch 41 | **MinFontWeight**: MinFontWeight when in Glitch 42 | **MaxFontWeight**: MaxFontWeight when in Glitch 43 | **WithGlitchParameter**: CGfloat, detemine the Glitch effect (bigger the cooler) 44 | 45 | If there is chinese words (unicode 0x4E00 - 0x9FFF) , glitch will be chinese. else will be english (a-z,0-9). 46 | 47 | 48 | ## Installation 49 | 50 | JZGlitchLabel is available through [CocoaPods](http://cocoapods.org). To install 51 | it, simply add the following line to your Podfile: 52 | 53 | ```ruby 54 | pod "JZGlitchLabel" 55 | ``` 56 | 57 | Or just grab JZGlitchLabel.h and .m from github. 58 | 59 | 60 | ## Author 61 | 62 | Fincher Justin, zhtsu47@me.com 63 | 64 | ## License 65 | 66 | JZGlitchLabel is available under the MIT license. See the LICENSE file for more info. 67 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // JZViewController.m 3 | // JZGlitchLabel 4 | // 5 | // Created by Fincher Justin on 11/07/2015. 6 | // Copyright (c) 2015 Fincher Justin. All rights reserved. 7 | // 8 | 9 | #import "JZViewController.h" 10 | #import "JZGlitchLabel.h" 11 | 12 | @interface JZViewController () 13 | 14 | @property (nonatomic) JZGlitchLabel *GLabel; 15 | 16 | @end 17 | 18 | @implementation JZViewController 19 | 20 | @synthesize GLabel; 21 | - (void)viewDidLoad { 22 | [super viewDidLoad]; 23 | // Do any additional setup after loading the view, typically from a nib. 24 | 25 | self.view.backgroundColor = [UIColor blackColor]; 26 | 27 | GLabel = [[JZGlitchLabel alloc] initWithFrame:CGRectMake(0, 20, self.view.frame.size.width,300)]; 28 | GLabel.Label.text = @"T"; 29 | GLabel.Label.font = [UIFont systemFontOfSize:150.0f weight:40]; 30 | GLabel.Label.textColor = [UIColor whiteColor]; 31 | GLabel.Label.textAlignment = NSTextAlignmentCenter; 32 | 33 | GLabel.MinFontSize = 60; 34 | GLabel.MaxFontSize = 160; 35 | GLabel.MinFontWeight = 20; 36 | GLabel.MaxFontWeight = 40; 37 | 38 | [self.view addSubview:GLabel]; 39 | 40 | NSTimer * GlitchTimer = [NSTimer scheduledTimerWithTimeInterval:4 41 | target:self 42 | selector:@selector(BeginGlitch) 43 | userInfo:nil 44 | repeats:YES]; 45 | 46 | 47 | UIButton * ConfirmButton = [UIButton buttonWithType:UIButtonTypeSystem]; 48 | [ConfirmButton setFrame:CGRectMake(20, self.view.frame.size.height - 80, self.view.frame.size.width - 40, 60)]; 49 | [ConfirmButton setTitle:@"Login" forState:UIControlStateNormal]; 50 | ConfirmButton.titleLabel.font = [UIFont systemFontOfSize:20.0]; 51 | [ConfirmButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; 52 | ConfirmButton.backgroundColor = [UIColor whiteColor]; 53 | [self.view addSubview:ConfirmButton]; 54 | 55 | } 56 | -(void)BeginGlitch 57 | { 58 | NSArray *Username = @[@"@JZ",@"@SC",@"@改",@"X"]; 59 | 60 | [GLabel performGlitchTransformTo:[Username objectAtIndex:(arc4random() % 4)] 61 | WithSteps:30 62 | WithInterval:0.08 63 | WithFontSize:130 64 | WithFontWeight:50 65 | WithGlitchParameter:20]; 66 | } 67 | 68 | - (void)didReceiveMemoryWarning { 69 | [super didReceiveMemoryWarning]; 70 | // Dispose of any resources that can be recreated. 71 | } 72 | - (UIStatusBarStyle)preferredStatusBarStyle 73 | { 74 | return UIStatusBarStyleLightContent; 75 | } 76 | 77 | @end 78 | 79 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "Pods-JZGlitchLabel_Tests/JZGlitchLabel.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "Pods-JZGlitchLabel_Tests/JZGlitchLabel.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "Pods-JZGlitchLabel_Example/JZGlitchLabel.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "Pods-JZGlitchLabel_Example/JZGlitchLabel.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel.xcodeproj/xcshareddata/xcschemes/JZGlitchLabel-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 61 | 63 | 69 | 70 | 71 | 72 | 73 | 74 | 80 | 82 | 88 | 89 | 90 | 91 | 93 | 94 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/Launch Screen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 28 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY="$(cd "${1%/*}" && pwd)" 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 22 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 23 | ;; 24 | *.xib) 25 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 26 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 63 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 64 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 65 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 66 | fi 67 | rm -f "$RESOURCES_TO_COPY" 68 | 69 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 70 | then 71 | case "${TARGETED_DEVICE_FAMILY}" in 72 | 1,2) 73 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 74 | ;; 75 | 1) 76 | TARGET_DEVICE_ARGS="--target-device iphone" 77 | ;; 78 | 2) 79 | TARGET_DEVICE_ARGS="--target-device ipad" 80 | ;; 81 | *) 82 | TARGET_DEVICE_ARGS="--target-device mac" 83 | ;; 84 | esac 85 | 86 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 87 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 88 | while read line; do 89 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 90 | XCASSET_FILES+=("$line") 91 | fi 92 | done <<<"$OTHER_XCASSETS" 93 | 94 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 95 | fi 96 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY="$(cd "${1%/*}" && pwd)" 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 22 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 23 | ;; 24 | *.xib) 25 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 26 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 63 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 64 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 65 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 66 | fi 67 | rm -f "$RESOURCES_TO_COPY" 68 | 69 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 70 | then 71 | case "${TARGETED_DEVICE_FAMILY}" in 72 | 1,2) 73 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 74 | ;; 75 | 1) 76 | TARGET_DEVICE_ARGS="--target-device iphone" 77 | ;; 78 | 2) 79 | TARGET_DEVICE_ARGS="--target-device ipad" 80 | ;; 81 | *) 82 | TARGET_DEVICE_ARGS="--target-device mac" 83 | ;; 84 | esac 85 | 86 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 87 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 88 | while read line; do 89 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 90 | XCASSET_FILES+=("$line") 91 | fi 92 | done <<<"$OTHER_XCASSETS" 93 | 94 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 95 | fi 96 | -------------------------------------------------------------------------------- /Pod/Classes/JZGlitchLabel.m: -------------------------------------------------------------------------------- 1 | // 2 | // JZGlitchLabel.m 3 | // JZGlitchLabel 4 | // 5 | // Created by Fincher Justin on 15/11/7. 6 | // Copyright © 2015年 Fincher Justin. All rights reserved. 7 | // 8 | 9 | #define IN_RANGE(x, low, high) ((low<=(x))&&((x)<=high)) 10 | #define IS_CJK_Unified_Ideographs(x) IN_RANGE(x, 0x4E00, 0x9FFF) 11 | #define IS_CJK_Unified_Ideographs_Extension(x) IN_RANGE(x, 0x3400, 0x4DFF) 12 | #define IS_EMOJI(x) IN_RANGE(x, 0x1F600, 0x1F64F) 13 | 14 | #import "JZGlitchLabel.h" 15 | @interface JZGlitchLabel () 16 | 17 | @property (nonatomic) NSTimer *GlitchTimer; 18 | 19 | @end 20 | 21 | 22 | @implementation JZGlitchLabel 23 | 24 | @synthesize Label; 25 | @synthesize FromString,ToString; 26 | @synthesize CurrentStep,TotalStep; 27 | @synthesize GlitchTimer,Interval; 28 | @synthesize MinFontSize,MinFontWeight,MaxFontSize,MaxFontWeight; 29 | @synthesize ToFontSize,ToFontWeight; 30 | @synthesize GlitchPara; 31 | 32 | 33 | 34 | - (instancetype) initWithFrame:(CGRect)frame 35 | { 36 | self = [super initWithFrame:frame]; 37 | self.Label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)]; 38 | //Label.backgroundColor = [UIColor blackColor]; 39 | [self addSubview:Label]; 40 | 41 | return self; 42 | } 43 | 44 | 45 | 46 | - (void)performGlitchTransformTo:(NSString *)String 47 | WithSteps:(NSUInteger)Step 48 | WithInterval:(CGFloat)TimeInterval 49 | WithFontSize:(CGFloat)FontSize 50 | WithFontWeight:(CGFloat)FontWeight 51 | WithGlitchParameter:(int)Para; 52 | { 53 | self.CurrentStep = 0; 54 | self.TotalStep = Step; 55 | 56 | self.ToString = String; 57 | self.FromString = self.Label.text; 58 | 59 | self.ToFontWeight = FontWeight; 60 | self.ToFontSize = FontSize; 61 | 62 | self.GlitchPara = Para; 63 | self.Interval = TimeInterval; 64 | 65 | GlitchTimer = [NSTimer scheduledTimerWithTimeInterval:TimeInterval 66 | target:self 67 | selector:@selector(GenerateRandomText) 68 | userInfo:nil 69 | repeats:YES]; 70 | 71 | } 72 | 73 | - (CGFloat)degreesToRadians:(double)degrees 74 | { 75 | return (CGFloat)(degrees * M_PI / 180.0); 76 | } 77 | - (void)GenerateRandomText 78 | { 79 | 80 | if (CurrentStep == TotalStep) 81 | { 82 | [GlitchTimer invalidate]; 83 | self.Label.text = self.ToString; 84 | self.Label.font = [UIFont systemFontOfSize:ToFontSize weight:ToFontWeight]; 85 | } 86 | else 87 | { 88 | 89 | self.Label.font = [UIFont systemFontOfSize:(MinFontSize + arc4random() % (int)(MaxFontSize - MinFontSize)) weight:MinFontWeight + arc4random() % (int)(MaxFontWeight - MinFontWeight)]; 90 | 91 | 92 | if (CurrentStep < TotalStep / 2) 93 | { 94 | //NSLog(@"self randomStringWithString FromString"); 95 | self.Label.text = [self randomStringWithString:FromString]; 96 | } 97 | else 98 | { 99 | //NSLog(@"self randomStringWithString ToString"); 100 | self.Label.text = [self randomStringWithString:ToString]; 101 | } 102 | 103 | 104 | UIImage *LabelImage = [self SaveLabelImage]; 105 | 106 | int Seed = arc4random() % 10; 107 | NSMutableArray *CGRexts = [self CalRectFromSelfAndSliceNum:Seed]; 108 | for (int i = 0; i < Seed; i++) 109 | { 110 | NSValue *RectValue = [CGRexts objectAtIndex:i]; 111 | CGRect Rect = [RectValue CGRectValue]; 112 | CGRect GlitchRect = CGRectMake((arc4random() % GlitchPara), Rect.origin.y, Rect.size.width, Rect.size.height); 113 | UIImage *NewImage = [self CropImage:LabelImage withRect:Rect]; 114 | UIImageView *NewImageView = [[UIImageView alloc] initWithFrame:GlitchRect]; 115 | NewImageView.image = NewImage; 116 | [self addSubview:NewImageView]; 117 | [self performSelector:@selector(RemoveImageView:) withObject:NewImageView afterDelay:Interval]; 118 | } 119 | 120 | } 121 | 122 | 123 | //NSLog(@"Now Step: %d",CurrentStep); 124 | 125 | 126 | CurrentStep ++ ; 127 | } 128 | 129 | - (void)RemoveImageView:(UIImageView *)View 130 | { 131 | [View removeFromSuperview]; 132 | } 133 | - (NSMutableArray *)CalRectFromSelfAndSliceNum:(int)Number 134 | { 135 | NSMutableArray *AllHeights = [[NSMutableArray alloc] initWithCapacity:Number]; 136 | NSMutableArray *CurrentHeights = [[NSMutableArray alloc] initWithCapacity:Number]; 137 | CGFloat ViewWidth = self.frame.size.width; 138 | CGFloat ViewHeight = self.frame.size.height; 139 | 140 | int HeightSum = 0; 141 | for (int i = 0; i < Number; i++) 142 | { 143 | NSNumber * Height = [NSNumber numberWithInt:(arc4random() % 200 + 1000)]; 144 | [AllHeights addObject:Height]; 145 | HeightSum = HeightSum + [Height intValue]; 146 | } 147 | 148 | CGFloat CurrentHeight = 0; 149 | for (int i = 0; i < Number; i++) 150 | { 151 | NSNumber * Height = [AllHeights objectAtIndex:i]; 152 | [AllHeights replaceObjectAtIndex:i withObject:[NSNumber numberWithFloat:[Height floatValue] / HeightSum * ViewHeight]]; 153 | 154 | CurrentHeight = CurrentHeight + [Height floatValue] / HeightSum * ViewHeight; 155 | [CurrentHeights addObject:[NSNumber numberWithDouble:CurrentHeight]]; 156 | } 157 | 158 | NSMutableArray *CGRects = [[NSMutableArray alloc] initWithCapacity:Number]; 159 | for (int i = 0; i < Number; i++) 160 | { 161 | NSNumber *y = [CurrentHeights objectAtIndex:i]; 162 | NSNumber *height = [AllHeights objectAtIndex:i]; 163 | CGRect NewCGRect = CGRectMake(0, [y floatValue], ViewWidth, [height floatValue]); 164 | [CGRects addObject:[NSValue valueWithCGRect:NewCGRect]]; 165 | } 166 | 167 | return CGRects; 168 | } 169 | 170 | - (UIImage *)CropImage:(UIImage *)image withRect:(CGRect)cropRect 171 | { 172 | cropRect = CGRectMake(cropRect.origin.x * image.scale, 173 | cropRect.origin.y * image.scale, 174 | cropRect.size.width * image.scale, 175 | cropRect.size.height * image.scale); 176 | 177 | CGImageRef imageRef = CGImageCreateWithImageInRect([image CGImage], cropRect); 178 | 179 | UIImage *croppedImage = [UIImage imageWithCGImage:imageRef]; 180 | 181 | CGImageRelease(imageRef); 182 | 183 | return croppedImage; 184 | } 185 | 186 | - (UIImage *)SaveLabelImage 187 | { 188 | UIGraphicsBeginImageContextWithOptions(self.frame.size, NO, 0.0); 189 | 190 | [self.Label.layer renderInContext:UIGraphicsGetCurrentContext()]; 191 | 192 | UIImage *savedImage = UIGraphicsGetImageFromCurrentImageContext(); 193 | UIGraphicsEndImageContext(); 194 | return savedImage; 195 | } 196 | 197 | -(NSString *) randomStringWithString:(NSString*)String 198 | { 199 | //NSLog(@"FromString Length: %d ToString Length: %d",[[NSNumber numberWithInteger:[FromString length]] intValue],[[NSNumber numberWithInteger:[ToString length]]intValue]); 200 | //int AimedLenthInt = ([[NSNumber numberWithUnsignedInteger:[ToString length]]intValue] - [[NSNumber numberWithUnsignedInteger:[FromString length]] intValue])*CurrentStep/TotalStep + [[NSNumber numberWithUnsignedInteger:[ToString length]]intValue] ; 201 | 202 | int AimedLenthInt = (int)(([[NSNumber numberWithUnsignedInteger:[ToString length]] floatValue]-[[NSNumber numberWithUnsignedInteger:[FromString length]] floatValue])*CurrentStep/TotalStep + [[NSNumber numberWithUnsignedInteger:[FromString length]] floatValue]); 203 | //NSLog(@"AimedLenthInt : %d",AimedLenthInt); 204 | NSUInteger AimedLength = AimedLenthInt; 205 | //NSLog(@"AimedLength: %lu",(unsigned long)AimedLength); 206 | NSMutableString *AimedString = [NSMutableString stringWithCapacity:AimedLength]; 207 | 208 | NSMutableArray *Characters = [[NSMutableArray alloc] initWithCapacity:[String length]]; 209 | //NSLog(@"randomStringWithString String:%@ StringLength:%d",String,[String length]); 210 | for (int i=0; i < [[NSNumber numberWithInteger:[String length]] intValue]; i++) 211 | { 212 | NSString *OneChar = [NSString stringWithFormat:@"%C", [String characterAtIndex:i]]; 213 | 214 | //NSLog(@"%C %@",[String characterAtIndex:i],OneChar); 215 | 216 | 217 | [Characters addObject:OneChar]; 218 | } 219 | 220 | for (int i = 0; i < AimedLenthInt ; i++) 221 | { 222 | if (i < [Characters count]) 223 | { 224 | //数组里面有对应的字符 根据对应的字符返回随机的字符 225 | NSString *OneChar = [Characters objectAtIndex:i]; 226 | //NSLog(@"OneChar: %@ at Index %d",OneChar,i); 227 | NSString *OutputChar = [self CharacterReplaceWithGivenOneChar:OneChar]; 228 | 229 | [AimedString appendString:OutputChar]; 230 | } 231 | else 232 | { 233 | //数组里面没有对应的字符 随机一个英文/数字 234 | NSString *vowels = @"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXZY0123456789.,+-/#$%^&*()@!<> "; 235 | NSString *OutputChar = [vowels substringWithRange:NSMakeRange(arc4random_uniform((int)[vowels length]), 1)]; 236 | 237 | [AimedString appendString:OutputChar]; 238 | } 239 | } 240 | 241 | return AimedString; 242 | } 243 | 244 | - (NSString *)CharacterReplaceWithGivenOneChar:(NSString *)OneChar 245 | { 246 | if ([self IsCJK:OneChar]) 247 | { 248 | //NSLog(@"Han "); 249 | // 随机一个中文字符出去 250 | uint32_t first = 0x04E00; 251 | uint32_t last = 0x09FFF; 252 | uint32_t random = first + arc4random() % (last - first); 253 | NSString *tmp = [[NSString alloc] initWithBytes:&random length:4 encoding:NSUTF32LittleEndianStringEncoding]; 254 | //NSLog(@"%@", tmp); 255 | return tmp; 256 | } 257 | else 258 | { 259 | //随机一个英文/数字 260 | //NSLog(@"not Han "); 261 | NSString *vowels = @"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXZY0123456789.,+-/#$%^&*()@!<> "; 262 | NSString *tmp = [vowels substringWithRange:NSMakeRange(arc4random_uniform((int)[vowels length]), 1)]; 263 | return tmp; 264 | } 265 | } 266 | 267 | - (BOOL)IsCJK:(NSString *)CJKString 268 | { 269 | //NSLog(@"IsCJK:%@",CJKString); 270 | for(int i = 0; i<[CJKString length];i++) 271 | { 272 | if (IS_CJK_Unified_Ideographs([CJKString characterAtIndex:i])) 273 | { 274 | return YES; 275 | } 276 | } 277 | return NO; 278 | } 279 | 280 | @end 281 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0D1FB8A91BEE51AF0094F561 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0D1FB8A81BEE51AF0094F561 /* Launch Screen.storyboard */; }; 11 | 0E37496AA7474E4C0AE715DC /* Pods_JZGlitchLabel_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CFF66019CABF119B6564083 /* Pods_JZGlitchLabel_Example.framework */; }; 12 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 13 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 14 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 15 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 16 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 17 | 6003F59E195388D20070C39A /* JZAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* JZAppDelegate.m */; }; 18 | 6003F5A7195388D20070C39A /* JZViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* JZViewController.m */; }; 19 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 20 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 21 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 22 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 23 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 24 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 25 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; 26 | BD1F79D7B4117CBFCE03524A /* Pods_JZGlitchLabel_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A16A6A1DA0AB5FA91BED9036 /* Pods_JZGlitchLabel_Tests.framework */; }; 27 | /* End PBXBuildFile section */ 28 | 29 | /* Begin PBXContainerItemProxy section */ 30 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = 6003F582195388D10070C39A /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 6003F589195388D20070C39A; 35 | remoteInfo = JZGlitchLabel; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 0D1FB8A81BEE51AF0094F561 /* Launch Screen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = ""; }; 41 | 452067B62C9BB159FEEADA45 /* Pods-JZGlitchLabel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JZGlitchLabel_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.debug.xcconfig"; sourceTree = ""; }; 42 | 6003F58A195388D20070C39A /* JZGlitchLabel_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = JZGlitchLabel_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 44 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 45 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 46 | 6003F595195388D20070C39A /* JZGlitchLabel-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "JZGlitchLabel-Info.plist"; sourceTree = ""; }; 47 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 48 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 49 | 6003F59B195388D20070C39A /* JZGlitchLabel-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "JZGlitchLabel-Prefix.pch"; sourceTree = ""; }; 50 | 6003F59C195388D20070C39A /* JZAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JZAppDelegate.h; sourceTree = ""; }; 51 | 6003F59D195388D20070C39A /* JZAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JZAppDelegate.m; sourceTree = ""; }; 52 | 6003F5A5195388D20070C39A /* JZViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JZViewController.h; sourceTree = ""; }; 53 | 6003F5A6195388D20070C39A /* JZViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JZViewController.m; sourceTree = ""; }; 54 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 55 | 6003F5AE195388D20070C39A /* JZGlitchLabel_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JZGlitchLabel_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 57 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 58 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 59 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 60 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 61 | 75664B9CF995864C54141E61 /* Pods-JZGlitchLabel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JZGlitchLabel_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.release.xcconfig"; sourceTree = ""; }; 62 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; 63 | 88979A8ED04BC037EA898F36 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 64 | 9CFF66019CABF119B6564083 /* Pods_JZGlitchLabel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JZGlitchLabel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 65 | A16A6A1DA0AB5FA91BED9036 /* Pods_JZGlitchLabel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JZGlitchLabel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | AC4E8FF79D11E8A9825A3114 /* JZGlitchLabel.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = JZGlitchLabel.podspec; path = ../JZGlitchLabel.podspec; sourceTree = ""; }; 67 | DFB2022F65AFE23F20F4D75F /* Pods-JZGlitchLabel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JZGlitchLabel_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.release.xcconfig"; sourceTree = ""; }; 68 | E183E1E404FCE034161D908E /* Pods-JZGlitchLabel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JZGlitchLabel_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.debug.xcconfig"; sourceTree = ""; }; 69 | E4BAD0D43D949EB0CA420148 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 70 | /* End PBXFileReference section */ 71 | 72 | /* Begin PBXFrameworksBuildPhase section */ 73 | 6003F587195388D20070C39A /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 78 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 79 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 80 | 0E37496AA7474E4C0AE715DC /* Pods_JZGlitchLabel_Example.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | 6003F5AB195388D20070C39A /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 89 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 90 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 91 | BD1F79D7B4117CBFCE03524A /* Pods_JZGlitchLabel_Tests.framework in Frameworks */, 92 | ); 93 | runOnlyForDeploymentPostprocessing = 0; 94 | }; 95 | /* End PBXFrameworksBuildPhase section */ 96 | 97 | /* Begin PBXGroup section */ 98 | 47AE6D7D17C8DC5F07EA33A9 /* Pods */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | 452067B62C9BB159FEEADA45 /* Pods-JZGlitchLabel_Example.debug.xcconfig */, 102 | DFB2022F65AFE23F20F4D75F /* Pods-JZGlitchLabel_Example.release.xcconfig */, 103 | E183E1E404FCE034161D908E /* Pods-JZGlitchLabel_Tests.debug.xcconfig */, 104 | 75664B9CF995864C54141E61 /* Pods-JZGlitchLabel_Tests.release.xcconfig */, 105 | ); 106 | name = Pods; 107 | sourceTree = ""; 108 | }; 109 | 6003F581195388D10070C39A = { 110 | isa = PBXGroup; 111 | children = ( 112 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 113 | 6003F593195388D20070C39A /* Example for JZGlitchLabel */, 114 | 6003F5B5195388D20070C39A /* Tests */, 115 | 6003F58C195388D20070C39A /* Frameworks */, 116 | 6003F58B195388D20070C39A /* Products */, 117 | 47AE6D7D17C8DC5F07EA33A9 /* Pods */, 118 | ); 119 | sourceTree = ""; 120 | }; 121 | 6003F58B195388D20070C39A /* Products */ = { 122 | isa = PBXGroup; 123 | children = ( 124 | 6003F58A195388D20070C39A /* JZGlitchLabel_Example.app */, 125 | 6003F5AE195388D20070C39A /* JZGlitchLabel_Tests.xctest */, 126 | ); 127 | name = Products; 128 | sourceTree = ""; 129 | }; 130 | 6003F58C195388D20070C39A /* Frameworks */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | 6003F58D195388D20070C39A /* Foundation.framework */, 134 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 135 | 6003F591195388D20070C39A /* UIKit.framework */, 136 | 6003F5AF195388D20070C39A /* XCTest.framework */, 137 | 9CFF66019CABF119B6564083 /* Pods_JZGlitchLabel_Example.framework */, 138 | A16A6A1DA0AB5FA91BED9036 /* Pods_JZGlitchLabel_Tests.framework */, 139 | ); 140 | name = Frameworks; 141 | sourceTree = ""; 142 | }; 143 | 6003F593195388D20070C39A /* Example for JZGlitchLabel */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | 6003F59C195388D20070C39A /* JZAppDelegate.h */, 147 | 6003F59D195388D20070C39A /* JZAppDelegate.m */, 148 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, 149 | 0D1FB8A81BEE51AF0094F561 /* Launch Screen.storyboard */, 150 | 6003F5A5195388D20070C39A /* JZViewController.h */, 151 | 6003F5A6195388D20070C39A /* JZViewController.m */, 152 | 6003F5A8195388D20070C39A /* Images.xcassets */, 153 | 6003F594195388D20070C39A /* Supporting Files */, 154 | ); 155 | name = "Example for JZGlitchLabel"; 156 | path = JZGlitchLabel; 157 | sourceTree = ""; 158 | }; 159 | 6003F594195388D20070C39A /* Supporting Files */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | 6003F595195388D20070C39A /* JZGlitchLabel-Info.plist */, 163 | 6003F596195388D20070C39A /* InfoPlist.strings */, 164 | 6003F599195388D20070C39A /* main.m */, 165 | 6003F59B195388D20070C39A /* JZGlitchLabel-Prefix.pch */, 166 | ); 167 | name = "Supporting Files"; 168 | sourceTree = ""; 169 | }; 170 | 6003F5B5195388D20070C39A /* Tests */ = { 171 | isa = PBXGroup; 172 | children = ( 173 | 6003F5BB195388D20070C39A /* Tests.m */, 174 | 6003F5B6195388D20070C39A /* Supporting Files */, 175 | ); 176 | path = Tests; 177 | sourceTree = ""; 178 | }; 179 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 180 | isa = PBXGroup; 181 | children = ( 182 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 183 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 184 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 185 | ); 186 | name = "Supporting Files"; 187 | sourceTree = ""; 188 | }; 189 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 190 | isa = PBXGroup; 191 | children = ( 192 | AC4E8FF79D11E8A9825A3114 /* JZGlitchLabel.podspec */, 193 | E4BAD0D43D949EB0CA420148 /* README.md */, 194 | 88979A8ED04BC037EA898F36 /* LICENSE */, 195 | ); 196 | name = "Podspec Metadata"; 197 | sourceTree = ""; 198 | }; 199 | /* End PBXGroup section */ 200 | 201 | /* Begin PBXNativeTarget section */ 202 | 6003F589195388D20070C39A /* JZGlitchLabel_Example */ = { 203 | isa = PBXNativeTarget; 204 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "JZGlitchLabel_Example" */; 205 | buildPhases = ( 206 | 82530E2BD436C1FBB3309EA7 /* Check Pods Manifest.lock */, 207 | 6003F586195388D20070C39A /* Sources */, 208 | 6003F587195388D20070C39A /* Frameworks */, 209 | 6003F588195388D20070C39A /* Resources */, 210 | CD01806ABAB61D5F9D157C80 /* Embed Pods Frameworks */, 211 | 76907AFEB2D1D65997DBE5E6 /* Copy Pods Resources */, 212 | ); 213 | buildRules = ( 214 | ); 215 | dependencies = ( 216 | ); 217 | name = JZGlitchLabel_Example; 218 | productName = JZGlitchLabel; 219 | productReference = 6003F58A195388D20070C39A /* JZGlitchLabel_Example.app */; 220 | productType = "com.apple.product-type.application"; 221 | }; 222 | 6003F5AD195388D20070C39A /* JZGlitchLabel_Tests */ = { 223 | isa = PBXNativeTarget; 224 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "JZGlitchLabel_Tests" */; 225 | buildPhases = ( 226 | 02801325F1A4568FFBB589B3 /* Check Pods Manifest.lock */, 227 | 6003F5AA195388D20070C39A /* Sources */, 228 | 6003F5AB195388D20070C39A /* Frameworks */, 229 | 6003F5AC195388D20070C39A /* Resources */, 230 | A39D718580B791BBF082B350 /* Embed Pods Frameworks */, 231 | 295AADBC66C4E334C21EB2FD /* Copy Pods Resources */, 232 | ); 233 | buildRules = ( 234 | ); 235 | dependencies = ( 236 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 237 | ); 238 | name = JZGlitchLabel_Tests; 239 | productName = JZGlitchLabelTests; 240 | productReference = 6003F5AE195388D20070C39A /* JZGlitchLabel_Tests.xctest */; 241 | productType = "com.apple.product-type.bundle.unit-test"; 242 | }; 243 | /* End PBXNativeTarget section */ 244 | 245 | /* Begin PBXProject section */ 246 | 6003F582195388D10070C39A /* Project object */ = { 247 | isa = PBXProject; 248 | attributes = { 249 | CLASSPREFIX = JZ; 250 | LastUpgradeCheck = 0510; 251 | ORGANIZATIONNAME = "Fincher Justin"; 252 | TargetAttributes = { 253 | 6003F5AD195388D20070C39A = { 254 | TestTargetID = 6003F589195388D20070C39A; 255 | }; 256 | }; 257 | }; 258 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "JZGlitchLabel" */; 259 | compatibilityVersion = "Xcode 3.2"; 260 | developmentRegion = English; 261 | hasScannedForEncodings = 0; 262 | knownRegions = ( 263 | en, 264 | Base, 265 | ); 266 | mainGroup = 6003F581195388D10070C39A; 267 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 268 | projectDirPath = ""; 269 | projectRoot = ""; 270 | targets = ( 271 | 6003F589195388D20070C39A /* JZGlitchLabel_Example */, 272 | 6003F5AD195388D20070C39A /* JZGlitchLabel_Tests */, 273 | ); 274 | }; 275 | /* End PBXProject section */ 276 | 277 | /* Begin PBXResourcesBuildPhase section */ 278 | 6003F588195388D20070C39A /* Resources */ = { 279 | isa = PBXResourcesBuildPhase; 280 | buildActionMask = 2147483647; 281 | files = ( 282 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, 283 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 284 | 0D1FB8A91BEE51AF0094F561 /* Launch Screen.storyboard in Resources */, 285 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 286 | ); 287 | runOnlyForDeploymentPostprocessing = 0; 288 | }; 289 | 6003F5AC195388D20070C39A /* Resources */ = { 290 | isa = PBXResourcesBuildPhase; 291 | buildActionMask = 2147483647; 292 | files = ( 293 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 294 | ); 295 | runOnlyForDeploymentPostprocessing = 0; 296 | }; 297 | /* End PBXResourcesBuildPhase section */ 298 | 299 | /* Begin PBXShellScriptBuildPhase section */ 300 | 02801325F1A4568FFBB589B3 /* Check Pods Manifest.lock */ = { 301 | isa = PBXShellScriptBuildPhase; 302 | buildActionMask = 2147483647; 303 | files = ( 304 | ); 305 | inputPaths = ( 306 | ); 307 | name = "Check Pods Manifest.lock"; 308 | outputPaths = ( 309 | ); 310 | runOnlyForDeploymentPostprocessing = 0; 311 | shellPath = /bin/sh; 312 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 313 | showEnvVarsInLog = 0; 314 | }; 315 | 295AADBC66C4E334C21EB2FD /* Copy Pods Resources */ = { 316 | isa = PBXShellScriptBuildPhase; 317 | buildActionMask = 2147483647; 318 | files = ( 319 | ); 320 | inputPaths = ( 321 | ); 322 | name = "Copy Pods Resources"; 323 | outputPaths = ( 324 | ); 325 | runOnlyForDeploymentPostprocessing = 0; 326 | shellPath = /bin/sh; 327 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-resources.sh\"\n"; 328 | showEnvVarsInLog = 0; 329 | }; 330 | 76907AFEB2D1D65997DBE5E6 /* Copy Pods Resources */ = { 331 | isa = PBXShellScriptBuildPhase; 332 | buildActionMask = 2147483647; 333 | files = ( 334 | ); 335 | inputPaths = ( 336 | ); 337 | name = "Copy Pods Resources"; 338 | outputPaths = ( 339 | ); 340 | runOnlyForDeploymentPostprocessing = 0; 341 | shellPath = /bin/sh; 342 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-resources.sh\"\n"; 343 | showEnvVarsInLog = 0; 344 | }; 345 | 82530E2BD436C1FBB3309EA7 /* Check Pods Manifest.lock */ = { 346 | isa = PBXShellScriptBuildPhase; 347 | buildActionMask = 2147483647; 348 | files = ( 349 | ); 350 | inputPaths = ( 351 | ); 352 | name = "Check Pods Manifest.lock"; 353 | outputPaths = ( 354 | ); 355 | runOnlyForDeploymentPostprocessing = 0; 356 | shellPath = /bin/sh; 357 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 358 | showEnvVarsInLog = 0; 359 | }; 360 | A39D718580B791BBF082B350 /* Embed Pods Frameworks */ = { 361 | isa = PBXShellScriptBuildPhase; 362 | buildActionMask = 2147483647; 363 | files = ( 364 | ); 365 | inputPaths = ( 366 | ); 367 | name = "Embed Pods Frameworks"; 368 | outputPaths = ( 369 | ); 370 | runOnlyForDeploymentPostprocessing = 0; 371 | shellPath = /bin/sh; 372 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-frameworks.sh\"\n"; 373 | showEnvVarsInLog = 0; 374 | }; 375 | CD01806ABAB61D5F9D157C80 /* Embed Pods Frameworks */ = { 376 | isa = PBXShellScriptBuildPhase; 377 | buildActionMask = 2147483647; 378 | files = ( 379 | ); 380 | inputPaths = ( 381 | ); 382 | name = "Embed Pods Frameworks"; 383 | outputPaths = ( 384 | ); 385 | runOnlyForDeploymentPostprocessing = 0; 386 | shellPath = /bin/sh; 387 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-frameworks.sh\"\n"; 388 | showEnvVarsInLog = 0; 389 | }; 390 | /* End PBXShellScriptBuildPhase section */ 391 | 392 | /* Begin PBXSourcesBuildPhase section */ 393 | 6003F586195388D20070C39A /* Sources */ = { 394 | isa = PBXSourcesBuildPhase; 395 | buildActionMask = 2147483647; 396 | files = ( 397 | 6003F59E195388D20070C39A /* JZAppDelegate.m in Sources */, 398 | 6003F5A7195388D20070C39A /* JZViewController.m in Sources */, 399 | 6003F59A195388D20070C39A /* main.m in Sources */, 400 | ); 401 | runOnlyForDeploymentPostprocessing = 0; 402 | }; 403 | 6003F5AA195388D20070C39A /* Sources */ = { 404 | isa = PBXSourcesBuildPhase; 405 | buildActionMask = 2147483647; 406 | files = ( 407 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 408 | ); 409 | runOnlyForDeploymentPostprocessing = 0; 410 | }; 411 | /* End PBXSourcesBuildPhase section */ 412 | 413 | /* Begin PBXTargetDependency section */ 414 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 415 | isa = PBXTargetDependency; 416 | target = 6003F589195388D20070C39A /* JZGlitchLabel_Example */; 417 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 418 | }; 419 | /* End PBXTargetDependency section */ 420 | 421 | /* Begin PBXVariantGroup section */ 422 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 423 | isa = PBXVariantGroup; 424 | children = ( 425 | 6003F597195388D20070C39A /* en */, 426 | ); 427 | name = InfoPlist.strings; 428 | sourceTree = ""; 429 | }; 430 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 431 | isa = PBXVariantGroup; 432 | children = ( 433 | 6003F5B9195388D20070C39A /* en */, 434 | ); 435 | name = InfoPlist.strings; 436 | sourceTree = ""; 437 | }; 438 | /* End PBXVariantGroup section */ 439 | 440 | /* Begin XCBuildConfiguration section */ 441 | 6003F5BD195388D20070C39A /* Debug */ = { 442 | isa = XCBuildConfiguration; 443 | buildSettings = { 444 | ALWAYS_SEARCH_USER_PATHS = NO; 445 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 446 | CLANG_CXX_LIBRARY = "libc++"; 447 | CLANG_ENABLE_MODULES = YES; 448 | CLANG_ENABLE_OBJC_ARC = YES; 449 | CLANG_WARN_BOOL_CONVERSION = YES; 450 | CLANG_WARN_CONSTANT_CONVERSION = YES; 451 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 452 | CLANG_WARN_EMPTY_BODY = YES; 453 | CLANG_WARN_ENUM_CONVERSION = YES; 454 | CLANG_WARN_INT_CONVERSION = YES; 455 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 456 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 457 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 458 | COPY_PHASE_STRIP = NO; 459 | GCC_C_LANGUAGE_STANDARD = gnu99; 460 | GCC_DYNAMIC_NO_PIC = NO; 461 | GCC_OPTIMIZATION_LEVEL = 0; 462 | GCC_PREPROCESSOR_DEFINITIONS = ( 463 | "DEBUG=1", 464 | "$(inherited)", 465 | ); 466 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 467 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 468 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 469 | GCC_WARN_UNDECLARED_SELECTOR = YES; 470 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 471 | GCC_WARN_UNUSED_FUNCTION = YES; 472 | GCC_WARN_UNUSED_VARIABLE = YES; 473 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 474 | ONLY_ACTIVE_ARCH = YES; 475 | SDKROOT = iphoneos; 476 | TARGETED_DEVICE_FAMILY = "1,2"; 477 | }; 478 | name = Debug; 479 | }; 480 | 6003F5BE195388D20070C39A /* Release */ = { 481 | isa = XCBuildConfiguration; 482 | buildSettings = { 483 | ALWAYS_SEARCH_USER_PATHS = NO; 484 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 485 | CLANG_CXX_LIBRARY = "libc++"; 486 | CLANG_ENABLE_MODULES = YES; 487 | CLANG_ENABLE_OBJC_ARC = YES; 488 | CLANG_WARN_BOOL_CONVERSION = YES; 489 | CLANG_WARN_CONSTANT_CONVERSION = YES; 490 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 491 | CLANG_WARN_EMPTY_BODY = YES; 492 | CLANG_WARN_ENUM_CONVERSION = YES; 493 | CLANG_WARN_INT_CONVERSION = YES; 494 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 495 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 496 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 497 | COPY_PHASE_STRIP = YES; 498 | ENABLE_NS_ASSERTIONS = NO; 499 | GCC_C_LANGUAGE_STANDARD = gnu99; 500 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 501 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 502 | GCC_WARN_UNDECLARED_SELECTOR = YES; 503 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 504 | GCC_WARN_UNUSED_FUNCTION = YES; 505 | GCC_WARN_UNUSED_VARIABLE = YES; 506 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 507 | SDKROOT = iphoneos; 508 | TARGETED_DEVICE_FAMILY = "1,2"; 509 | VALIDATE_PRODUCT = YES; 510 | }; 511 | name = Release; 512 | }; 513 | 6003F5C0195388D20070C39A /* Debug */ = { 514 | isa = XCBuildConfiguration; 515 | baseConfigurationReference = 452067B62C9BB159FEEADA45 /* Pods-JZGlitchLabel_Example.debug.xcconfig */; 516 | buildSettings = { 517 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 518 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 519 | GCC_PREFIX_HEADER = "JZGlitchLabel/JZGlitchLabel-Prefix.pch"; 520 | INFOPLIST_FILE = "JZGlitchLabel/JZGlitchLabel-Info.plist"; 521 | MODULE_NAME = ExampleApp; 522 | PRODUCT_NAME = "$(TARGET_NAME)"; 523 | WRAPPER_EXTENSION = app; 524 | }; 525 | name = Debug; 526 | }; 527 | 6003F5C1195388D20070C39A /* Release */ = { 528 | isa = XCBuildConfiguration; 529 | baseConfigurationReference = DFB2022F65AFE23F20F4D75F /* Pods-JZGlitchLabel_Example.release.xcconfig */; 530 | buildSettings = { 531 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 532 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 533 | GCC_PREFIX_HEADER = "JZGlitchLabel/JZGlitchLabel-Prefix.pch"; 534 | INFOPLIST_FILE = "JZGlitchLabel/JZGlitchLabel-Info.plist"; 535 | MODULE_NAME = ExampleApp; 536 | PRODUCT_NAME = "$(TARGET_NAME)"; 537 | WRAPPER_EXTENSION = app; 538 | }; 539 | name = Release; 540 | }; 541 | 6003F5C3195388D20070C39A /* Debug */ = { 542 | isa = XCBuildConfiguration; 543 | baseConfigurationReference = E183E1E404FCE034161D908E /* Pods-JZGlitchLabel_Tests.debug.xcconfig */; 544 | buildSettings = { 545 | BUNDLE_LOADER = "$(TEST_HOST)"; 546 | FRAMEWORK_SEARCH_PATHS = ( 547 | "$(SDKROOT)/Developer/Library/Frameworks", 548 | "$(inherited)", 549 | "$(DEVELOPER_FRAMEWORKS_DIR)", 550 | ); 551 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 552 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 553 | GCC_PREPROCESSOR_DEFINITIONS = ( 554 | "DEBUG=1", 555 | "$(inherited)", 556 | ); 557 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 558 | PRODUCT_NAME = "$(TARGET_NAME)"; 559 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JZGlitchLabel_Example.app/JZGlitchLabel_Example"; 560 | WRAPPER_EXTENSION = xctest; 561 | }; 562 | name = Debug; 563 | }; 564 | 6003F5C4195388D20070C39A /* Release */ = { 565 | isa = XCBuildConfiguration; 566 | baseConfigurationReference = 75664B9CF995864C54141E61 /* Pods-JZGlitchLabel_Tests.release.xcconfig */; 567 | buildSettings = { 568 | BUNDLE_LOADER = "$(TEST_HOST)"; 569 | FRAMEWORK_SEARCH_PATHS = ( 570 | "$(SDKROOT)/Developer/Library/Frameworks", 571 | "$(inherited)", 572 | "$(DEVELOPER_FRAMEWORKS_DIR)", 573 | ); 574 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 575 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 576 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 577 | PRODUCT_NAME = "$(TARGET_NAME)"; 578 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JZGlitchLabel_Example.app/JZGlitchLabel_Example"; 579 | WRAPPER_EXTENSION = xctest; 580 | }; 581 | name = Release; 582 | }; 583 | /* End XCBuildConfiguration section */ 584 | 585 | /* Begin XCConfigurationList section */ 586 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "JZGlitchLabel" */ = { 587 | isa = XCConfigurationList; 588 | buildConfigurations = ( 589 | 6003F5BD195388D20070C39A /* Debug */, 590 | 6003F5BE195388D20070C39A /* Release */, 591 | ); 592 | defaultConfigurationIsVisible = 0; 593 | defaultConfigurationName = Release; 594 | }; 595 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "JZGlitchLabel_Example" */ = { 596 | isa = XCConfigurationList; 597 | buildConfigurations = ( 598 | 6003F5C0195388D20070C39A /* Debug */, 599 | 6003F5C1195388D20070C39A /* Release */, 600 | ); 601 | defaultConfigurationIsVisible = 0; 602 | defaultConfigurationName = Release; 603 | }; 604 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "JZGlitchLabel_Tests" */ = { 605 | isa = XCConfigurationList; 606 | buildConfigurations = ( 607 | 6003F5C3195388D20070C39A /* Debug */, 608 | 6003F5C4195388D20070C39A /* Release */, 609 | ); 610 | defaultConfigurationIsVisible = 0; 611 | defaultConfigurationName = Release; 612 | }; 613 | /* End XCConfigurationList section */ 614 | }; 615 | rootObject = 6003F582195388D10070C39A /* Project object */; 616 | } 617 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 007398DC400879AF2D8BC76C9E317FA1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 11 | 02297FE8C071F0536BA8F175BD4CDFDA /* JZGlitchLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E01495FD27E2DA0E91BDF8C30C8C108 /* JZGlitchLabel-dummy.m */; }; 12 | 090895E01E6BAA8CD1482F3794AF7C96 /* JZGlitchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B9760A14D65A45594A9FC8F10EEE27E /* JZGlitchLabel.m */; }; 13 | 2FC45874704EEC390927FB0017288602 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 14 | 3C8A6DF27C09B7BF91CF1ECE90B544A9 /* Pods-JZGlitchLabel_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D786CDECDC15D6A1A6C156B568DA83AC /* Pods-JZGlitchLabel_Tests-dummy.m */; }; 15 | 698047C81E9DC49B48DDB8243345CBEE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 16 | 6BBE28B12BB5880BA5D530EC24BE3E77 /* Pods-JZGlitchLabel_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B744D89277050305291166736F99589 /* Pods-JZGlitchLabel_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | 75BAC8BC0B5998D287E21EF604620538 /* Pods-JZGlitchLabel_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B384D78264822DFC82706799266498B3 /* Pods-JZGlitchLabel_Example-dummy.m */; }; 18 | B8625F92CDDB99C4B63014735A77182D /* JZGlitchLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FAF88B0CC00E4681E83B7D18072C9B5 /* JZGlitchLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | C1A77CAD1B3BC95E59BA1AAD684E335E /* JZGlitchLabel.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8009B1E2D87C0E45C50633E3EDFE642A /* JZGlitchLabel.bundle */; }; 20 | C8E956FAE9276914AEBB483E5C49D537 /* Pods-JZGlitchLabel_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D7778FE389436E08872011B870603D9C /* Pods-JZGlitchLabel_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 21 | FF579596E6A0A2CEEA4428F6934C4D15 /* JZGlitchLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = A1265A41EF389E4694AE4BD30128BAD7 /* JZGlitchLabel.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | 873B5E2C91724937434B51ACB522C483 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = BC83197B5F4F1AE1BC2BF4321949AE71; 30 | remoteInfo = JZGlitchLabel; 31 | }; 32 | A4EF14037A9DC0A6E3FF0BA25627E78B /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = BC83197B5F4F1AE1BC2BF4321949AE71; 37 | remoteInfo = JZGlitchLabel; 38 | }; 39 | E5FB9F7E3AF3FEB4028A2776A664E043 /* PBXContainerItemProxy */ = { 40 | isa = PBXContainerItemProxy; 41 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 42 | proxyType = 1; 43 | remoteGlobalIDString = 119556F852D4BDC1478885C2E358542C; 44 | remoteInfo = "JZGlitchLabel-JZGlitchLabel"; 45 | }; 46 | /* End PBXContainerItemProxy section */ 47 | 48 | /* Begin PBXFileReference section */ 49 | 0D5691BBA08CD799977FF7748C4801FE /* JZGlitchLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = JZGlitchLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 12E4FFF5E8BA7C7DEBB26964520999C2 /* Pods-JZGlitchLabel_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-JZGlitchLabel_Example-frameworks.sh"; sourceTree = ""; }; 51 | 1B9760A14D65A45594A9FC8F10EEE27E /* JZGlitchLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = JZGlitchLabel.m; sourceTree = ""; }; 52 | 1C4B603BB962A7F4A352646109E01A86 /* Pods-JZGlitchLabel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-JZGlitchLabel_Example.release.xcconfig"; sourceTree = ""; }; 53 | 1E01495FD27E2DA0E91BDF8C30C8C108 /* JZGlitchLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JZGlitchLabel-dummy.m"; sourceTree = ""; }; 54 | 2690C7A2DC4DC1C9CD1ED3AA836AA350 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 55 | 2C4B580B7D690EB930DDD212873E32CC /* Pods_JZGlitchLabel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JZGlitchLabel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 3B36A08ABD9308AEFE9F547D81838A07 /* Pods_JZGlitchLabel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JZGlitchLabel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | 3CD2538CFA0E7E6B51637E90351FFB3E /* Pods-JZGlitchLabel_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-JZGlitchLabel_Tests-acknowledgements.plist"; sourceTree = ""; }; 58 | 3DDA442F8AFE26F89056A6809BFA7477 /* Pods-JZGlitchLabel_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-JZGlitchLabel_Tests-resources.sh"; sourceTree = ""; }; 59 | 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 60 | 49A098645CD39A3246C9A44DB8B39C4C /* Pods-JZGlitchLabel_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-JZGlitchLabel_Tests-frameworks.sh"; sourceTree = ""; }; 61 | 58D181F9478FB6882647797701F118C5 /* Pods-JZGlitchLabel_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-JZGlitchLabel_Tests.modulemap"; sourceTree = ""; }; 62 | 5B744D89277050305291166736F99589 /* Pods-JZGlitchLabel_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-JZGlitchLabel_Example-umbrella.h"; sourceTree = ""; }; 63 | 5F648850A0FB9AECFF325092F1C19438 /* Pods-JZGlitchLabel_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-JZGlitchLabel_Tests-acknowledgements.markdown"; sourceTree = ""; }; 64 | 75EFA887EBE8529F5B557DC7C4FFBBA2 /* JZGlitchLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = JZGlitchLabel.modulemap; sourceTree = ""; }; 65 | 7E21B0DBDAD260E277B411F23F04FFD2 /* Pods-JZGlitchLabel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-JZGlitchLabel_Tests.debug.xcconfig"; sourceTree = ""; }; 66 | 7E8E87C14C76524C9DAA71BD6F3D57AE /* Pods-JZGlitchLabel_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-JZGlitchLabel_Example-resources.sh"; sourceTree = ""; }; 67 | 7F24478AFEC74EA5DAFBF36286677066 /* Pods-JZGlitchLabel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-JZGlitchLabel_Tests.release.xcconfig"; sourceTree = ""; }; 68 | 8009B1E2D87C0E45C50633E3EDFE642A /* JZGlitchLabel.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JZGlitchLabel.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | 8FAF88B0CC00E4681E83B7D18072C9B5 /* JZGlitchLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JZGlitchLabel-umbrella.h"; sourceTree = ""; }; 70 | A1265A41EF389E4694AE4BD30128BAD7 /* JZGlitchLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JZGlitchLabel.h; sourceTree = ""; }; 71 | AE54663F6BC790A87227DD5CDC32CB64 /* JZGlitchLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JZGlitchLabel-prefix.pch"; sourceTree = ""; }; 72 | B384D78264822DFC82706799266498B3 /* Pods-JZGlitchLabel_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-JZGlitchLabel_Example-dummy.m"; sourceTree = ""; }; 73 | BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 74 | C1CCCA2CF443B5CC635525F16E20DF0A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 75 | C5D03533CB4D4A97340CABC84E562038 /* JZGlitchLabel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JZGlitchLabel.xcconfig; sourceTree = ""; }; 76 | CE4ABFBF90E25B8542C79856DCF3A796 /* Pods-JZGlitchLabel_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-JZGlitchLabel_Example.modulemap"; sourceTree = ""; }; 77 | CF88753125941811F988EEB4B4A66BEE /* Pods-JZGlitchLabel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-JZGlitchLabel_Example.debug.xcconfig"; sourceTree = ""; }; 78 | D7778FE389436E08872011B870603D9C /* Pods-JZGlitchLabel_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-JZGlitchLabel_Tests-umbrella.h"; sourceTree = ""; }; 79 | D786CDECDC15D6A1A6C156B568DA83AC /* Pods-JZGlitchLabel_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-JZGlitchLabel_Tests-dummy.m"; sourceTree = ""; }; 80 | DAC6D87782F0366BD755DFD2D9552231 /* Pods-JZGlitchLabel_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-JZGlitchLabel_Example-acknowledgements.markdown"; sourceTree = ""; }; 81 | F606815E224E9986D309B9300292EFFF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 82 | FF399C692B041F878321A9160BB8F08C /* Pods-JZGlitchLabel_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-JZGlitchLabel_Example-acknowledgements.plist"; sourceTree = ""; }; 83 | /* End PBXFileReference section */ 84 | 85 | /* Begin PBXFrameworksBuildPhase section */ 86 | 79C4830DD1DD537AE68D3417AF45D2B2 /* Frameworks */ = { 87 | isa = PBXFrameworksBuildPhase; 88 | buildActionMask = 2147483647; 89 | files = ( 90 | 2FC45874704EEC390927FB0017288602 /* Foundation.framework in Frameworks */, 91 | ); 92 | runOnlyForDeploymentPostprocessing = 0; 93 | }; 94 | CF7B9EC5C730F81004CFF578DDE56393 /* Frameworks */ = { 95 | isa = PBXFrameworksBuildPhase; 96 | buildActionMask = 2147483647; 97 | files = ( 98 | 007398DC400879AF2D8BC76C9E317FA1 /* Foundation.framework in Frameworks */, 99 | ); 100 | runOnlyForDeploymentPostprocessing = 0; 101 | }; 102 | E5ADED646A6D139597D5B0B0C177853E /* Frameworks */ = { 103 | isa = PBXFrameworksBuildPhase; 104 | buildActionMask = 2147483647; 105 | files = ( 106 | 698047C81E9DC49B48DDB8243345CBEE /* Foundation.framework in Frameworks */, 107 | ); 108 | runOnlyForDeploymentPostprocessing = 0; 109 | }; 110 | FD758A0669BCAA29842D73FFC56C2F82 /* Frameworks */ = { 111 | isa = PBXFrameworksBuildPhase; 112 | buildActionMask = 2147483647; 113 | files = ( 114 | ); 115 | runOnlyForDeploymentPostprocessing = 0; 116 | }; 117 | /* End PBXFrameworksBuildPhase section */ 118 | 119 | /* Begin PBXGroup section */ 120 | 06E52CA29CA51B2B3C79725C66C03ABA /* Pods-JZGlitchLabel_Example */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | F606815E224E9986D309B9300292EFFF /* Info.plist */, 124 | CE4ABFBF90E25B8542C79856DCF3A796 /* Pods-JZGlitchLabel_Example.modulemap */, 125 | DAC6D87782F0366BD755DFD2D9552231 /* Pods-JZGlitchLabel_Example-acknowledgements.markdown */, 126 | FF399C692B041F878321A9160BB8F08C /* Pods-JZGlitchLabel_Example-acknowledgements.plist */, 127 | B384D78264822DFC82706799266498B3 /* Pods-JZGlitchLabel_Example-dummy.m */, 128 | 12E4FFF5E8BA7C7DEBB26964520999C2 /* Pods-JZGlitchLabel_Example-frameworks.sh */, 129 | 7E8E87C14C76524C9DAA71BD6F3D57AE /* Pods-JZGlitchLabel_Example-resources.sh */, 130 | 5B744D89277050305291166736F99589 /* Pods-JZGlitchLabel_Example-umbrella.h */, 131 | CF88753125941811F988EEB4B4A66BEE /* Pods-JZGlitchLabel_Example.debug.xcconfig */, 132 | 1C4B603BB962A7F4A352646109E01A86 /* Pods-JZGlitchLabel_Example.release.xcconfig */, 133 | ); 134 | name = "Pods-JZGlitchLabel_Example"; 135 | path = "Target Support Files/Pods-JZGlitchLabel_Example"; 136 | sourceTree = ""; 137 | }; 138 | 14456AE1B2370F44B5CCCCA60A50CAB4 /* JZGlitchLabel */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | D86463BDEADD00C45E835464811C987D /* Pod */, 142 | 7CB52A5645AC156681393C45074C181D /* Support Files */, 143 | ); 144 | name = JZGlitchLabel; 145 | path = ../..; 146 | sourceTree = ""; 147 | }; 148 | 2705D68C7D6A8060F2A49308A4497CAB /* Development Pods */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | 14456AE1B2370F44B5CCCCA60A50CAB4 /* JZGlitchLabel */, 152 | ); 153 | name = "Development Pods"; 154 | sourceTree = ""; 155 | }; 156 | 4A5DA6D4AF7BA46592A668AAFC509961 /* Pods-JZGlitchLabel_Tests */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | C1CCCA2CF443B5CC635525F16E20DF0A /* Info.plist */, 160 | 58D181F9478FB6882647797701F118C5 /* Pods-JZGlitchLabel_Tests.modulemap */, 161 | 5F648850A0FB9AECFF325092F1C19438 /* Pods-JZGlitchLabel_Tests-acknowledgements.markdown */, 162 | 3CD2538CFA0E7E6B51637E90351FFB3E /* Pods-JZGlitchLabel_Tests-acknowledgements.plist */, 163 | D786CDECDC15D6A1A6C156B568DA83AC /* Pods-JZGlitchLabel_Tests-dummy.m */, 164 | 49A098645CD39A3246C9A44DB8B39C4C /* Pods-JZGlitchLabel_Tests-frameworks.sh */, 165 | 3DDA442F8AFE26F89056A6809BFA7477 /* Pods-JZGlitchLabel_Tests-resources.sh */, 166 | D7778FE389436E08872011B870603D9C /* Pods-JZGlitchLabel_Tests-umbrella.h */, 167 | 7E21B0DBDAD260E277B411F23F04FFD2 /* Pods-JZGlitchLabel_Tests.debug.xcconfig */, 168 | 7F24478AFEC74EA5DAFBF36286677066 /* Pods-JZGlitchLabel_Tests.release.xcconfig */, 169 | ); 170 | name = "Pods-JZGlitchLabel_Tests"; 171 | path = "Target Support Files/Pods-JZGlitchLabel_Tests"; 172 | sourceTree = ""; 173 | }; 174 | 59FEE462F8463A6FDBB2CCF06F312EAE /* Classes */ = { 175 | isa = PBXGroup; 176 | children = ( 177 | A1265A41EF389E4694AE4BD30128BAD7 /* JZGlitchLabel.h */, 178 | 1B9760A14D65A45594A9FC8F10EEE27E /* JZGlitchLabel.m */, 179 | ); 180 | path = Classes; 181 | sourceTree = ""; 182 | }; 183 | 681556495DAB634AB376DFE9DC43B4AA /* Products */ = { 184 | isa = PBXGroup; 185 | children = ( 186 | 8009B1E2D87C0E45C50633E3EDFE642A /* JZGlitchLabel.bundle */, 187 | 0D5691BBA08CD799977FF7748C4801FE /* JZGlitchLabel.framework */, 188 | 2C4B580B7D690EB930DDD212873E32CC /* Pods_JZGlitchLabel_Example.framework */, 189 | 3B36A08ABD9308AEFE9F547D81838A07 /* Pods_JZGlitchLabel_Tests.framework */, 190 | ); 191 | name = Products; 192 | sourceTree = ""; 193 | }; 194 | 7CB52A5645AC156681393C45074C181D /* Support Files */ = { 195 | isa = PBXGroup; 196 | children = ( 197 | 2690C7A2DC4DC1C9CD1ED3AA836AA350 /* Info.plist */, 198 | 75EFA887EBE8529F5B557DC7C4FFBBA2 /* JZGlitchLabel.modulemap */, 199 | C5D03533CB4D4A97340CABC84E562038 /* JZGlitchLabel.xcconfig */, 200 | 1E01495FD27E2DA0E91BDF8C30C8C108 /* JZGlitchLabel-dummy.m */, 201 | AE54663F6BC790A87227DD5CDC32CB64 /* JZGlitchLabel-prefix.pch */, 202 | 8FAF88B0CC00E4681E83B7D18072C9B5 /* JZGlitchLabel-umbrella.h */, 203 | ); 204 | name = "Support Files"; 205 | path = "Example/Pods/Target Support Files/JZGlitchLabel"; 206 | sourceTree = ""; 207 | }; 208 | 7DB346D0F39D3F0E887471402A8071AB = { 209 | isa = PBXGroup; 210 | children = ( 211 | BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */, 212 | 2705D68C7D6A8060F2A49308A4497CAB /* Development Pods */, 213 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 214 | 681556495DAB634AB376DFE9DC43B4AA /* Products */, 215 | 8BB7C314ECA426C42CAFD52F7F202513 /* Targets Support Files */, 216 | ); 217 | sourceTree = ""; 218 | }; 219 | 8BB7C314ECA426C42CAFD52F7F202513 /* Targets Support Files */ = { 220 | isa = PBXGroup; 221 | children = ( 222 | 06E52CA29CA51B2B3C79725C66C03ABA /* Pods-JZGlitchLabel_Example */, 223 | 4A5DA6D4AF7BA46592A668AAFC509961 /* Pods-JZGlitchLabel_Tests */, 224 | ); 225 | name = "Targets Support Files"; 226 | sourceTree = ""; 227 | }; 228 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 229 | isa = PBXGroup; 230 | children = ( 231 | BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */, 232 | ); 233 | name = Frameworks; 234 | sourceTree = ""; 235 | }; 236 | BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */ = { 237 | isa = PBXGroup; 238 | children = ( 239 | 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */, 240 | ); 241 | name = iOS; 242 | sourceTree = ""; 243 | }; 244 | D86463BDEADD00C45E835464811C987D /* Pod */ = { 245 | isa = PBXGroup; 246 | children = ( 247 | 59FEE462F8463A6FDBB2CCF06F312EAE /* Classes */, 248 | ); 249 | path = Pod; 250 | sourceTree = ""; 251 | }; 252 | /* End PBXGroup section */ 253 | 254 | /* Begin PBXHeadersBuildPhase section */ 255 | 33D7C5918ED83F1DA98367B44667ED90 /* Headers */ = { 256 | isa = PBXHeadersBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | B8625F92CDDB99C4B63014735A77182D /* JZGlitchLabel-umbrella.h in Headers */, 260 | FF579596E6A0A2CEEA4428F6934C4D15 /* JZGlitchLabel.h in Headers */, 261 | ); 262 | runOnlyForDeploymentPostprocessing = 0; 263 | }; 264 | 6525CAED67CA335C030CCCB69F8C8596 /* Headers */ = { 265 | isa = PBXHeadersBuildPhase; 266 | buildActionMask = 2147483647; 267 | files = ( 268 | C8E956FAE9276914AEBB483E5C49D537 /* Pods-JZGlitchLabel_Tests-umbrella.h in Headers */, 269 | ); 270 | runOnlyForDeploymentPostprocessing = 0; 271 | }; 272 | D3AA145ED7C42AF5C8B10247E1DF5699 /* Headers */ = { 273 | isa = PBXHeadersBuildPhase; 274 | buildActionMask = 2147483647; 275 | files = ( 276 | 6BBE28B12BB5880BA5D530EC24BE3E77 /* Pods-JZGlitchLabel_Example-umbrella.h in Headers */, 277 | ); 278 | runOnlyForDeploymentPostprocessing = 0; 279 | }; 280 | /* End PBXHeadersBuildPhase section */ 281 | 282 | /* Begin PBXNativeTarget section */ 283 | 119556F852D4BDC1478885C2E358542C /* JZGlitchLabel-JZGlitchLabel */ = { 284 | isa = PBXNativeTarget; 285 | buildConfigurationList = EF028837F8AD97129EECABDE80CAC009 /* Build configuration list for PBXNativeTarget "JZGlitchLabel-JZGlitchLabel" */; 286 | buildPhases = ( 287 | F1382A8E64B77A20487E2449657104B4 /* Sources */, 288 | FD758A0669BCAA29842D73FFC56C2F82 /* Frameworks */, 289 | 1C86E7C720DF7C637652CA41EF67D463 /* Resources */, 290 | ); 291 | buildRules = ( 292 | ); 293 | dependencies = ( 294 | ); 295 | name = "JZGlitchLabel-JZGlitchLabel"; 296 | productName = "JZGlitchLabel-JZGlitchLabel"; 297 | productReference = 8009B1E2D87C0E45C50633E3EDFE642A /* JZGlitchLabel.bundle */; 298 | productType = "com.apple.product-type.bundle"; 299 | }; 300 | 94DAD8D02B46C3054F71F10B86A05F0D /* Pods-JZGlitchLabel_Tests */ = { 301 | isa = PBXNativeTarget; 302 | buildConfigurationList = A2CF8F6C72E37941893466831648740D /* Build configuration list for PBXNativeTarget "Pods-JZGlitchLabel_Tests" */; 303 | buildPhases = ( 304 | 4F628A2C956AB339D36400A14D181ED8 /* Sources */, 305 | CF7B9EC5C730F81004CFF578DDE56393 /* Frameworks */, 306 | 6525CAED67CA335C030CCCB69F8C8596 /* Headers */, 307 | ); 308 | buildRules = ( 309 | ); 310 | dependencies = ( 311 | 37F85D30A6EBB2B82A8ED04505F2A209 /* PBXTargetDependency */, 312 | ); 313 | name = "Pods-JZGlitchLabel_Tests"; 314 | productName = "Pods-JZGlitchLabel_Tests"; 315 | productReference = 3B36A08ABD9308AEFE9F547D81838A07 /* Pods_JZGlitchLabel_Tests.framework */; 316 | productType = "com.apple.product-type.framework"; 317 | }; 318 | AB80C745CFC826E45A821ED52506FE0D /* Pods-JZGlitchLabel_Example */ = { 319 | isa = PBXNativeTarget; 320 | buildConfigurationList = 62493C36C6327B67808A8512A74937BC /* Build configuration list for PBXNativeTarget "Pods-JZGlitchLabel_Example" */; 321 | buildPhases = ( 322 | 91316A3AB2A76C106F343E638D69E4C5 /* Sources */, 323 | E5ADED646A6D139597D5B0B0C177853E /* Frameworks */, 324 | D3AA145ED7C42AF5C8B10247E1DF5699 /* Headers */, 325 | ); 326 | buildRules = ( 327 | ); 328 | dependencies = ( 329 | D58447A363ED6EEDBC20CB62EF3DAB3F /* PBXTargetDependency */, 330 | ); 331 | name = "Pods-JZGlitchLabel_Example"; 332 | productName = "Pods-JZGlitchLabel_Example"; 333 | productReference = 2C4B580B7D690EB930DDD212873E32CC /* Pods_JZGlitchLabel_Example.framework */; 334 | productType = "com.apple.product-type.framework"; 335 | }; 336 | BC83197B5F4F1AE1BC2BF4321949AE71 /* JZGlitchLabel */ = { 337 | isa = PBXNativeTarget; 338 | buildConfigurationList = 0F70EF4F6884C7503D7CC52CBEB3464E /* Build configuration list for PBXNativeTarget "JZGlitchLabel" */; 339 | buildPhases = ( 340 | 0D1B2D3E1BDE103B770D57BE7F8D59EA /* Sources */, 341 | 79C4830DD1DD537AE68D3417AF45D2B2 /* Frameworks */, 342 | AA7A6A2AFA6384CB41164F86E4CB9BFE /* Resources */, 343 | 33D7C5918ED83F1DA98367B44667ED90 /* Headers */, 344 | ); 345 | buildRules = ( 346 | ); 347 | dependencies = ( 348 | 95B156A7AB6D742FC3289957AC8426AD /* PBXTargetDependency */, 349 | ); 350 | name = JZGlitchLabel; 351 | productName = JZGlitchLabel; 352 | productReference = 0D5691BBA08CD799977FF7748C4801FE /* JZGlitchLabel.framework */; 353 | productType = "com.apple.product-type.framework"; 354 | }; 355 | /* End PBXNativeTarget section */ 356 | 357 | /* Begin PBXProject section */ 358 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 359 | isa = PBXProject; 360 | attributes = { 361 | LastSwiftUpdateCheck = 0700; 362 | LastUpgradeCheck = 0700; 363 | }; 364 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 365 | compatibilityVersion = "Xcode 3.2"; 366 | developmentRegion = English; 367 | hasScannedForEncodings = 0; 368 | knownRegions = ( 369 | en, 370 | ); 371 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 372 | productRefGroup = 681556495DAB634AB376DFE9DC43B4AA /* Products */; 373 | projectDirPath = ""; 374 | projectRoot = ""; 375 | targets = ( 376 | BC83197B5F4F1AE1BC2BF4321949AE71 /* JZGlitchLabel */, 377 | 119556F852D4BDC1478885C2E358542C /* JZGlitchLabel-JZGlitchLabel */, 378 | AB80C745CFC826E45A821ED52506FE0D /* Pods-JZGlitchLabel_Example */, 379 | 94DAD8D02B46C3054F71F10B86A05F0D /* Pods-JZGlitchLabel_Tests */, 380 | ); 381 | }; 382 | /* End PBXProject section */ 383 | 384 | /* Begin PBXResourcesBuildPhase section */ 385 | 1C86E7C720DF7C637652CA41EF67D463 /* Resources */ = { 386 | isa = PBXResourcesBuildPhase; 387 | buildActionMask = 2147483647; 388 | files = ( 389 | ); 390 | runOnlyForDeploymentPostprocessing = 0; 391 | }; 392 | AA7A6A2AFA6384CB41164F86E4CB9BFE /* Resources */ = { 393 | isa = PBXResourcesBuildPhase; 394 | buildActionMask = 2147483647; 395 | files = ( 396 | C1A77CAD1B3BC95E59BA1AAD684E335E /* JZGlitchLabel.bundle in Resources */, 397 | ); 398 | runOnlyForDeploymentPostprocessing = 0; 399 | }; 400 | /* End PBXResourcesBuildPhase section */ 401 | 402 | /* Begin PBXSourcesBuildPhase section */ 403 | 0D1B2D3E1BDE103B770D57BE7F8D59EA /* Sources */ = { 404 | isa = PBXSourcesBuildPhase; 405 | buildActionMask = 2147483647; 406 | files = ( 407 | 02297FE8C071F0536BA8F175BD4CDFDA /* JZGlitchLabel-dummy.m in Sources */, 408 | 090895E01E6BAA8CD1482F3794AF7C96 /* JZGlitchLabel.m in Sources */, 409 | ); 410 | runOnlyForDeploymentPostprocessing = 0; 411 | }; 412 | 4F628A2C956AB339D36400A14D181ED8 /* Sources */ = { 413 | isa = PBXSourcesBuildPhase; 414 | buildActionMask = 2147483647; 415 | files = ( 416 | 3C8A6DF27C09B7BF91CF1ECE90B544A9 /* Pods-JZGlitchLabel_Tests-dummy.m in Sources */, 417 | ); 418 | runOnlyForDeploymentPostprocessing = 0; 419 | }; 420 | 91316A3AB2A76C106F343E638D69E4C5 /* Sources */ = { 421 | isa = PBXSourcesBuildPhase; 422 | buildActionMask = 2147483647; 423 | files = ( 424 | 75BAC8BC0B5998D287E21EF604620538 /* Pods-JZGlitchLabel_Example-dummy.m in Sources */, 425 | ); 426 | runOnlyForDeploymentPostprocessing = 0; 427 | }; 428 | F1382A8E64B77A20487E2449657104B4 /* Sources */ = { 429 | isa = PBXSourcesBuildPhase; 430 | buildActionMask = 2147483647; 431 | files = ( 432 | ); 433 | runOnlyForDeploymentPostprocessing = 0; 434 | }; 435 | /* End PBXSourcesBuildPhase section */ 436 | 437 | /* Begin PBXTargetDependency section */ 438 | 37F85D30A6EBB2B82A8ED04505F2A209 /* PBXTargetDependency */ = { 439 | isa = PBXTargetDependency; 440 | name = JZGlitchLabel; 441 | target = BC83197B5F4F1AE1BC2BF4321949AE71 /* JZGlitchLabel */; 442 | targetProxy = 873B5E2C91724937434B51ACB522C483 /* PBXContainerItemProxy */; 443 | }; 444 | 95B156A7AB6D742FC3289957AC8426AD /* PBXTargetDependency */ = { 445 | isa = PBXTargetDependency; 446 | name = "JZGlitchLabel-JZGlitchLabel"; 447 | target = 119556F852D4BDC1478885C2E358542C /* JZGlitchLabel-JZGlitchLabel */; 448 | targetProxy = E5FB9F7E3AF3FEB4028A2776A664E043 /* PBXContainerItemProxy */; 449 | }; 450 | D58447A363ED6EEDBC20CB62EF3DAB3F /* PBXTargetDependency */ = { 451 | isa = PBXTargetDependency; 452 | name = JZGlitchLabel; 453 | target = BC83197B5F4F1AE1BC2BF4321949AE71 /* JZGlitchLabel */; 454 | targetProxy = A4EF14037A9DC0A6E3FF0BA25627E78B /* PBXContainerItemProxy */; 455 | }; 456 | /* End PBXTargetDependency section */ 457 | 458 | /* Begin XCBuildConfiguration section */ 459 | 03CA91998D6773EC5D02B3DB87B8353E /* Release */ = { 460 | isa = XCBuildConfiguration; 461 | buildSettings = { 462 | ALWAYS_SEARCH_USER_PATHS = NO; 463 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 464 | CLANG_CXX_LIBRARY = "libc++"; 465 | CLANG_ENABLE_MODULES = YES; 466 | CLANG_ENABLE_OBJC_ARC = YES; 467 | CLANG_WARN_BOOL_CONVERSION = YES; 468 | CLANG_WARN_CONSTANT_CONVERSION = YES; 469 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 470 | CLANG_WARN_EMPTY_BODY = YES; 471 | CLANG_WARN_ENUM_CONVERSION = YES; 472 | CLANG_WARN_INT_CONVERSION = YES; 473 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 474 | CLANG_WARN_UNREACHABLE_CODE = YES; 475 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 476 | COPY_PHASE_STRIP = YES; 477 | ENABLE_NS_ASSERTIONS = NO; 478 | GCC_C_LANGUAGE_STANDARD = gnu99; 479 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 480 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 481 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 482 | GCC_WARN_UNDECLARED_SELECTOR = YES; 483 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 484 | GCC_WARN_UNUSED_FUNCTION = YES; 485 | GCC_WARN_UNUSED_VARIABLE = YES; 486 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 487 | STRIP_INSTALLED_PRODUCT = NO; 488 | SYMROOT = "${SRCROOT}/../build"; 489 | VALIDATE_PRODUCT = YES; 490 | }; 491 | name = Release; 492 | }; 493 | 0B57334D6C23DADAA4F7D802A5760EB2 /* Debug */ = { 494 | isa = XCBuildConfiguration; 495 | buildSettings = { 496 | ALWAYS_SEARCH_USER_PATHS = NO; 497 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 498 | CLANG_CXX_LIBRARY = "libc++"; 499 | CLANG_ENABLE_MODULES = YES; 500 | CLANG_ENABLE_OBJC_ARC = YES; 501 | CLANG_WARN_BOOL_CONVERSION = YES; 502 | CLANG_WARN_CONSTANT_CONVERSION = YES; 503 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 504 | CLANG_WARN_EMPTY_BODY = YES; 505 | CLANG_WARN_ENUM_CONVERSION = YES; 506 | CLANG_WARN_INT_CONVERSION = YES; 507 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 508 | CLANG_WARN_UNREACHABLE_CODE = YES; 509 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 510 | COPY_PHASE_STRIP = NO; 511 | GCC_C_LANGUAGE_STANDARD = gnu99; 512 | GCC_DYNAMIC_NO_PIC = NO; 513 | GCC_OPTIMIZATION_LEVEL = 0; 514 | GCC_PREPROCESSOR_DEFINITIONS = ( 515 | "DEBUG=1", 516 | "$(inherited)", 517 | ); 518 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 519 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 520 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 521 | GCC_WARN_UNDECLARED_SELECTOR = YES; 522 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 523 | GCC_WARN_UNUSED_FUNCTION = YES; 524 | GCC_WARN_UNUSED_VARIABLE = YES; 525 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 526 | ONLY_ACTIVE_ARCH = YES; 527 | STRIP_INSTALLED_PRODUCT = NO; 528 | SYMROOT = "${SRCROOT}/../build"; 529 | }; 530 | name = Debug; 531 | }; 532 | 159040228C1696A026DF53C924B8A833 /* Debug */ = { 533 | isa = XCBuildConfiguration; 534 | baseConfigurationReference = C5D03533CB4D4A97340CABC84E562038 /* JZGlitchLabel.xcconfig */; 535 | buildSettings = { 536 | ENABLE_STRICT_OBJC_MSGSEND = YES; 537 | PRODUCT_NAME = JZGlitchLabel; 538 | SDKROOT = iphoneos; 539 | SKIP_INSTALL = YES; 540 | WRAPPER_EXTENSION = bundle; 541 | }; 542 | name = Debug; 543 | }; 544 | 74EA6E6A014349E1C8CC236D241A0F59 /* Release */ = { 545 | isa = XCBuildConfiguration; 546 | baseConfigurationReference = C5D03533CB4D4A97340CABC84E562038 /* JZGlitchLabel.xcconfig */; 547 | buildSettings = { 548 | ENABLE_STRICT_OBJC_MSGSEND = YES; 549 | PRODUCT_NAME = JZGlitchLabel; 550 | SDKROOT = iphoneos; 551 | SKIP_INSTALL = YES; 552 | WRAPPER_EXTENSION = bundle; 553 | }; 554 | name = Release; 555 | }; 556 | 78DB9232691CEACE4ED1F9E7BCB5CD5D /* Debug */ = { 557 | isa = XCBuildConfiguration; 558 | baseConfigurationReference = CF88753125941811F988EEB4B4A66BEE /* Pods-JZGlitchLabel_Example.debug.xcconfig */; 559 | buildSettings = { 560 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 561 | CURRENT_PROJECT_VERSION = 1; 562 | DEFINES_MODULE = YES; 563 | DYLIB_COMPATIBILITY_VERSION = 1; 564 | DYLIB_CURRENT_VERSION = 1; 565 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 566 | ENABLE_STRICT_OBJC_MSGSEND = YES; 567 | INFOPLIST_FILE = "Target Support Files/Pods-JZGlitchLabel_Example/Info.plist"; 568 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 569 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 570 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 571 | MACH_O_TYPE = staticlib; 572 | MODULEMAP_FILE = "Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.modulemap"; 573 | MTL_ENABLE_DEBUG_INFO = YES; 574 | OTHER_LDFLAGS = ""; 575 | OTHER_LIBTOOLFLAGS = ""; 576 | PODS_ROOT = "$(SRCROOT)"; 577 | PRODUCT_NAME = Pods_JZGlitchLabel_Example; 578 | SDKROOT = iphoneos; 579 | SKIP_INSTALL = YES; 580 | TARGETED_DEVICE_FAMILY = "1,2"; 581 | VERSIONING_SYSTEM = "apple-generic"; 582 | VERSION_INFO_PREFIX = ""; 583 | }; 584 | name = Debug; 585 | }; 586 | 9C0BF10908C899588B128B3333FAD892 /* Debug */ = { 587 | isa = XCBuildConfiguration; 588 | baseConfigurationReference = 7E21B0DBDAD260E277B411F23F04FFD2 /* Pods-JZGlitchLabel_Tests.debug.xcconfig */; 589 | buildSettings = { 590 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 591 | CURRENT_PROJECT_VERSION = 1; 592 | DEFINES_MODULE = YES; 593 | DYLIB_COMPATIBILITY_VERSION = 1; 594 | DYLIB_CURRENT_VERSION = 1; 595 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 596 | ENABLE_STRICT_OBJC_MSGSEND = YES; 597 | INFOPLIST_FILE = "Target Support Files/Pods-JZGlitchLabel_Tests/Info.plist"; 598 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 599 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 600 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 601 | MACH_O_TYPE = staticlib; 602 | MODULEMAP_FILE = "Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.modulemap"; 603 | MTL_ENABLE_DEBUG_INFO = YES; 604 | OTHER_LDFLAGS = ""; 605 | OTHER_LIBTOOLFLAGS = ""; 606 | PODS_ROOT = "$(SRCROOT)"; 607 | PRODUCT_NAME = Pods_JZGlitchLabel_Tests; 608 | SDKROOT = iphoneos; 609 | SKIP_INSTALL = YES; 610 | TARGETED_DEVICE_FAMILY = "1,2"; 611 | VERSIONING_SYSTEM = "apple-generic"; 612 | VERSION_INFO_PREFIX = ""; 613 | }; 614 | name = Debug; 615 | }; 616 | A71B1008FE66FD1811D8539CD7573F2A /* Release */ = { 617 | isa = XCBuildConfiguration; 618 | baseConfigurationReference = 7F24478AFEC74EA5DAFBF36286677066 /* Pods-JZGlitchLabel_Tests.release.xcconfig */; 619 | buildSettings = { 620 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 621 | CURRENT_PROJECT_VERSION = 1; 622 | DEFINES_MODULE = YES; 623 | DYLIB_COMPATIBILITY_VERSION = 1; 624 | DYLIB_CURRENT_VERSION = 1; 625 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 626 | ENABLE_STRICT_OBJC_MSGSEND = YES; 627 | INFOPLIST_FILE = "Target Support Files/Pods-JZGlitchLabel_Tests/Info.plist"; 628 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 629 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 630 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 631 | MACH_O_TYPE = staticlib; 632 | MODULEMAP_FILE = "Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.modulemap"; 633 | MTL_ENABLE_DEBUG_INFO = NO; 634 | OTHER_LDFLAGS = ""; 635 | OTHER_LIBTOOLFLAGS = ""; 636 | PODS_ROOT = "$(SRCROOT)"; 637 | PRODUCT_NAME = Pods_JZGlitchLabel_Tests; 638 | SDKROOT = iphoneos; 639 | SKIP_INSTALL = YES; 640 | TARGETED_DEVICE_FAMILY = "1,2"; 641 | VERSIONING_SYSTEM = "apple-generic"; 642 | VERSION_INFO_PREFIX = ""; 643 | }; 644 | name = Release; 645 | }; 646 | C73BA56F5B643A5522883811327FB2C3 /* Debug */ = { 647 | isa = XCBuildConfiguration; 648 | baseConfigurationReference = C5D03533CB4D4A97340CABC84E562038 /* JZGlitchLabel.xcconfig */; 649 | buildSettings = { 650 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 651 | CURRENT_PROJECT_VERSION = 1; 652 | DEFINES_MODULE = YES; 653 | DYLIB_COMPATIBILITY_VERSION = 1; 654 | DYLIB_CURRENT_VERSION = 1; 655 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 656 | ENABLE_STRICT_OBJC_MSGSEND = YES; 657 | GCC_PREFIX_HEADER = "Target Support Files/JZGlitchLabel/JZGlitchLabel-prefix.pch"; 658 | INFOPLIST_FILE = "Target Support Files/JZGlitchLabel/Info.plist"; 659 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 660 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 661 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 662 | MODULEMAP_FILE = "Target Support Files/JZGlitchLabel/JZGlitchLabel.modulemap"; 663 | MTL_ENABLE_DEBUG_INFO = YES; 664 | PRODUCT_NAME = JZGlitchLabel; 665 | SDKROOT = iphoneos; 666 | SKIP_INSTALL = YES; 667 | TARGETED_DEVICE_FAMILY = "1,2"; 668 | VERSIONING_SYSTEM = "apple-generic"; 669 | VERSION_INFO_PREFIX = ""; 670 | }; 671 | name = Debug; 672 | }; 673 | DCE7AD7110B814995910E0C5BA36A6C2 /* Release */ = { 674 | isa = XCBuildConfiguration; 675 | baseConfigurationReference = C5D03533CB4D4A97340CABC84E562038 /* JZGlitchLabel.xcconfig */; 676 | buildSettings = { 677 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 678 | CURRENT_PROJECT_VERSION = 1; 679 | DEFINES_MODULE = YES; 680 | DYLIB_COMPATIBILITY_VERSION = 1; 681 | DYLIB_CURRENT_VERSION = 1; 682 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 683 | ENABLE_STRICT_OBJC_MSGSEND = YES; 684 | GCC_PREFIX_HEADER = "Target Support Files/JZGlitchLabel/JZGlitchLabel-prefix.pch"; 685 | INFOPLIST_FILE = "Target Support Files/JZGlitchLabel/Info.plist"; 686 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 687 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 688 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 689 | MODULEMAP_FILE = "Target Support Files/JZGlitchLabel/JZGlitchLabel.modulemap"; 690 | MTL_ENABLE_DEBUG_INFO = NO; 691 | PRODUCT_NAME = JZGlitchLabel; 692 | SDKROOT = iphoneos; 693 | SKIP_INSTALL = YES; 694 | TARGETED_DEVICE_FAMILY = "1,2"; 695 | VERSIONING_SYSTEM = "apple-generic"; 696 | VERSION_INFO_PREFIX = ""; 697 | }; 698 | name = Release; 699 | }; 700 | EE710CA376986275C7E334CEE086DBE6 /* Release */ = { 701 | isa = XCBuildConfiguration; 702 | baseConfigurationReference = 1C4B603BB962A7F4A352646109E01A86 /* Pods-JZGlitchLabel_Example.release.xcconfig */; 703 | buildSettings = { 704 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 705 | CURRENT_PROJECT_VERSION = 1; 706 | DEFINES_MODULE = YES; 707 | DYLIB_COMPATIBILITY_VERSION = 1; 708 | DYLIB_CURRENT_VERSION = 1; 709 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 710 | ENABLE_STRICT_OBJC_MSGSEND = YES; 711 | INFOPLIST_FILE = "Target Support Files/Pods-JZGlitchLabel_Example/Info.plist"; 712 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 713 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 714 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 715 | MACH_O_TYPE = staticlib; 716 | MODULEMAP_FILE = "Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.modulemap"; 717 | MTL_ENABLE_DEBUG_INFO = NO; 718 | OTHER_LDFLAGS = ""; 719 | OTHER_LIBTOOLFLAGS = ""; 720 | PODS_ROOT = "$(SRCROOT)"; 721 | PRODUCT_NAME = Pods_JZGlitchLabel_Example; 722 | SDKROOT = iphoneos; 723 | SKIP_INSTALL = YES; 724 | TARGETED_DEVICE_FAMILY = "1,2"; 725 | VERSIONING_SYSTEM = "apple-generic"; 726 | VERSION_INFO_PREFIX = ""; 727 | }; 728 | name = Release; 729 | }; 730 | /* End XCBuildConfiguration section */ 731 | 732 | /* Begin XCConfigurationList section */ 733 | 0F70EF4F6884C7503D7CC52CBEB3464E /* Build configuration list for PBXNativeTarget "JZGlitchLabel" */ = { 734 | isa = XCConfigurationList; 735 | buildConfigurations = ( 736 | C73BA56F5B643A5522883811327FB2C3 /* Debug */, 737 | DCE7AD7110B814995910E0C5BA36A6C2 /* Release */, 738 | ); 739 | defaultConfigurationIsVisible = 0; 740 | defaultConfigurationName = Release; 741 | }; 742 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 743 | isa = XCConfigurationList; 744 | buildConfigurations = ( 745 | 0B57334D6C23DADAA4F7D802A5760EB2 /* Debug */, 746 | 03CA91998D6773EC5D02B3DB87B8353E /* Release */, 747 | ); 748 | defaultConfigurationIsVisible = 0; 749 | defaultConfigurationName = Release; 750 | }; 751 | 62493C36C6327B67808A8512A74937BC /* Build configuration list for PBXNativeTarget "Pods-JZGlitchLabel_Example" */ = { 752 | isa = XCConfigurationList; 753 | buildConfigurations = ( 754 | 78DB9232691CEACE4ED1F9E7BCB5CD5D /* Debug */, 755 | EE710CA376986275C7E334CEE086DBE6 /* Release */, 756 | ); 757 | defaultConfigurationIsVisible = 0; 758 | defaultConfigurationName = Release; 759 | }; 760 | A2CF8F6C72E37941893466831648740D /* Build configuration list for PBXNativeTarget "Pods-JZGlitchLabel_Tests" */ = { 761 | isa = XCConfigurationList; 762 | buildConfigurations = ( 763 | 9C0BF10908C899588B128B3333FAD892 /* Debug */, 764 | A71B1008FE66FD1811D8539CD7573F2A /* Release */, 765 | ); 766 | defaultConfigurationIsVisible = 0; 767 | defaultConfigurationName = Release; 768 | }; 769 | EF028837F8AD97129EECABDE80CAC009 /* Build configuration list for PBXNativeTarget "JZGlitchLabel-JZGlitchLabel" */ = { 770 | isa = XCConfigurationList; 771 | buildConfigurations = ( 772 | 159040228C1696A026DF53C924B8A833 /* Debug */, 773 | 74EA6E6A014349E1C8CC236D241A0F59 /* Release */, 774 | ); 775 | defaultConfigurationIsVisible = 0; 776 | defaultConfigurationName = Release; 777 | }; 778 | /* End XCConfigurationList section */ 779 | }; 780 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 781 | } 782 | --------------------------------------------------------------------------------