├── FBGlowLabel.podspec ├── FBGlowLabel └── Classes │ ├── FBGlowLabel.h │ └── FBGlowLabel.m ├── FBGlowLabelDemo ├── .gitignore ├── Build │ ├── Intermediates │ │ ├── FBGlowLabelDemo.build │ │ │ └── Debug-iphonesimulator │ │ │ │ ├── FBGlowLabelDemo.build │ │ │ │ ├── FBGlowLabelDemo-all-target-headers.hmap │ │ │ │ ├── FBGlowLabelDemo-generated-files.hmap │ │ │ │ ├── FBGlowLabelDemo-own-target-headers.hmap │ │ │ │ ├── FBGlowLabelDemo-project-headers.hmap │ │ │ │ └── FBGlowLabelDemo.hmap │ │ │ │ └── FBGlowLabelDemoTests.build │ │ │ │ ├── FBGlowLabelDemoTests-all-target-headers.hmap │ │ │ │ ├── FBGlowLabelDemoTests-generated-files.hmap │ │ │ │ ├── FBGlowLabelDemoTests-own-target-headers.hmap │ │ │ │ ├── FBGlowLabelDemoTests-project-headers.hmap │ │ │ │ └── FBGlowLabelDemoTests.hmap │ │ ├── Pods.build │ │ │ ├── Debug-iphoneos │ │ │ │ ├── Pods-FBGlowLabel.build │ │ │ │ │ ├── Pods-FBGlowLabel-all-target-headers.hmap │ │ │ │ │ ├── Pods-FBGlowLabel-generated-files.hmap │ │ │ │ │ ├── Pods-FBGlowLabel-own-target-headers.hmap │ │ │ │ │ ├── Pods-FBGlowLabel-project-headers.hmap │ │ │ │ │ └── Pods-FBGlowLabel.hmap │ │ │ │ └── Pods.build │ │ │ │ │ ├── Pods-all-target-headers.hmap │ │ │ │ │ ├── Pods-generated-files.hmap │ │ │ │ │ ├── Pods-own-target-headers.hmap │ │ │ │ │ ├── Pods-project-headers.hmap │ │ │ │ │ └── Pods.hmap │ │ │ └── Debug-iphonesimulator │ │ │ │ ├── Pods-FBGlowLabel.build │ │ │ │ ├── Objects-normal │ │ │ │ │ └── i386 │ │ │ │ │ │ ├── FBGlowLabel.d │ │ │ │ │ │ ├── FBGlowLabel.dia │ │ │ │ │ │ ├── FBGlowLabel.o │ │ │ │ │ │ ├── Pods-FBGlowLabel-dummy.d │ │ │ │ │ │ ├── Pods-FBGlowLabel-dummy.dia │ │ │ │ │ │ ├── Pods-FBGlowLabel-dummy.o │ │ │ │ │ │ └── Pods-FBGlowLabel.LinkFileList │ │ │ │ ├── Pods-FBGlowLabel-all-target-headers.hmap │ │ │ │ ├── Pods-FBGlowLabel-generated-files.hmap │ │ │ │ ├── Pods-FBGlowLabel-own-target-headers.hmap │ │ │ │ ├── Pods-FBGlowLabel-project-headers.hmap │ │ │ │ ├── Pods-FBGlowLabel.dep │ │ │ │ ├── Pods-FBGlowLabel.hmap │ │ │ │ └── build-state.dat │ │ │ │ └── Pods.build │ │ │ │ ├── Objects-normal │ │ │ │ └── i386 │ │ │ │ │ ├── Pods-dummy.d │ │ │ │ │ ├── Pods-dummy.dia │ │ │ │ │ ├── Pods-dummy.o │ │ │ │ │ └── Pods.LinkFileList │ │ │ │ ├── Pods-all-target-headers.hmap │ │ │ │ ├── Pods-generated-files.hmap │ │ │ │ ├── Pods-own-target-headers.hmap │ │ │ │ ├── Pods-project-headers.hmap │ │ │ │ ├── Pods.dep │ │ │ │ ├── Pods.hmap │ │ │ │ └── build-state.dat │ │ └── PrecompiledHeaders │ │ │ ├── Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn │ │ │ ├── Pods-FBGlowLabel-prefix.pch.d │ │ │ ├── Pods-FBGlowLabel-prefix.pch.dia │ │ │ ├── Pods-FBGlowLabel-prefix.pch.pch │ │ │ └── Pods-FBGlowLabel-prefix.pch.pch.hash-criteria │ │ │ └── Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv │ │ │ ├── Pods-FBGlowLabel-prefix.pch.d │ │ │ ├── Pods-FBGlowLabel-prefix.pch.dia │ │ │ ├── Pods-FBGlowLabel-prefix.pch.pch │ │ │ └── Pods-FBGlowLabel-prefix.pch.pch.hash-criteria │ └── Products │ │ └── Debug-iphonesimulator │ │ ├── libPods-FBGlowLabel.a │ │ └── libPods.a ├── FBGlowLabelDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── FBGlowLabelDemo.xccheckout │ └── xcuserdata │ │ └── lyokato.xcuserdatad │ │ └── xcschemes │ │ ├── FBGlowLabelDemo.xcscheme │ │ └── xcschememanagement.plist ├── FBGlowLabelDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── FBGlowLabelDemo.xccheckout ├── FBGlowLabelDemo │ ├── Base.lproj │ │ └── Main.storyboard │ ├── FBAppDelegate.h │ ├── FBAppDelegate.m │ ├── FBGlowLabelDemo-Info.plist │ ├── FBGlowLabelDemo-Prefix.pch │ ├── FBViewController.h │ ├── FBViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── FBGlowLabelDemoTests │ ├── FBGlowLabelDemoTests-Info.plist │ ├── FBGlowLabelDemoTests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock └── Pods │ ├── BuildHeaders │ └── FBGlowLabel │ │ └── FBGlowLabel.h │ ├── Headers │ └── FBGlowLabel │ │ └── FBGlowLabel.h │ ├── Local Podspecs │ └── FBGlowLabel.podspec │ ├── Manifest.lock │ ├── Pods-FBGlowLabel-Private.xcconfig │ ├── Pods-FBGlowLabel-dummy.m │ ├── Pods-FBGlowLabel-prefix.pch │ ├── Pods-FBGlowLabel.xcconfig │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.xcconfig │ └── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ └── lyokato.xcuserdatad │ └── xcschemes │ ├── Pods-FBGlowLabel.xcscheme │ ├── Pods.xcscheme │ └── xcschememanagement.plist ├── LICENSE └── README.md /FBGlowLabel.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "FBGlowLabel" 3 | s.version = "0.0.1" 4 | s.summary = "adding UILabel glowing effect" 5 | s.description = <<-DESC 6 | This library supports glow effect on to UILabel class. 7 | Not only outer glow (shadow), but also inner glow. 8 | DESC 9 | s.homepage = "https://github.com/lyokato/FBGlowLabel" 10 | s.license = 'MIT' 11 | s.author = { "Lyo Kato" => "lyo.kato@gmail.com" } 12 | s.platform = :ios, '6.0' 13 | s.source = { :git => "https://github.com/lyokato/FBGlowLabel.git", :tag => "0.0.1" } 14 | s.source_files = 'FBGlowLabel/Classes/*.{h,m}' 15 | s.exclude_files = 'Classes/Exclude' 16 | # s.public_header_files = 'FBGLowLabel/Classes/*.h' 17 | # s.resource = "icon.png" 18 | # s.resources = "Resources/*.png" 19 | # s.preserve_paths = "FilesToSave", "MoreFilesToSave" 20 | # s.frameworks = 'SomeFramework', 'AnotherFramework' 21 | s.framework = 'QuartzCore' 22 | # s.library = 'iconv' 23 | # s.libraries = 'iconv', 'xml2' 24 | s.requires_arc = true 25 | # s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } 26 | # s.dependency 'JSONKit', '~> 1.4' 27 | end 28 | -------------------------------------------------------------------------------- /FBGlowLabel/Classes/FBGlowLabel.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface FBGlowLabel : UILabel 4 | @property (nonatomic, assign) CGFloat glowSize; 5 | @property (nonatomic) UIColor *glowColor; 6 | @property (nonatomic, assign) CGFloat innerGlowSize; 7 | @property (nonatomic) UIColor *innerGlowColor; 8 | @end 9 | 10 | -------------------------------------------------------------------------------- /FBGlowLabel/Classes/FBGlowLabel.m: -------------------------------------------------------------------------------- 1 | #import "FBGlowLabel.h" 2 | #import 3 | 4 | #define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame) 5 | #define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending) 6 | #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) 7 | #define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending) 8 | #define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending) 9 | 10 | @implementation FBGlowLabel 11 | 12 | - (id)initWithFrame:(CGRect)frame 13 | { 14 | if (self = [super initWithFrame:frame]) { 15 | [self setup]; 16 | } 17 | return self; 18 | } 19 | 20 | - (id)initWithCoder:(NSCoder *)coder 21 | { 22 | if (self = [super initWithCoder:coder]) { 23 | [self setup]; 24 | } 25 | return self; 26 | } 27 | 28 | - (void)setup 29 | { 30 | self.glowSize = 0.0f; 31 | self.glowColor = [UIColor clearColor]; 32 | self.innerGlowSize = 0.0; 33 | self.innerGlowColor = [UIColor clearColor]; 34 | } 35 | 36 | - (void)drawTextInRectForIOS7:(CGRect)rect 37 | { 38 | CGContextRef ctx = UIGraphicsGetCurrentContext(); 39 | 40 | UIGraphicsBeginImageContextWithOptions(rect.size, NO, 0.0); 41 | 42 | [super drawTextInRect:rect]; 43 | UIImage *textImage = UIGraphicsGetImageFromCurrentImageContext(); 44 | UIGraphicsEndImageContext(); 45 | 46 | CGContextSaveGState(ctx); 47 | if (_glowSize > 0) { 48 | CGContextSetShadow(ctx, CGSizeZero, _glowSize); 49 | CGContextSetShadowWithColor(ctx, CGSizeZero, _glowSize, _glowColor.CGColor); 50 | } 51 | [textImage drawAtPoint:rect.origin]; 52 | CGContextRestoreGState(ctx); 53 | 54 | if (_innerGlowSize > 0) { 55 | 56 | UIGraphicsBeginImageContextWithOptions(rect.size, NO, 0.0); 57 | CGContextRef ctx2 = UIGraphicsGetCurrentContext(); 58 | CGContextSaveGState(ctx2); 59 | CGContextSetFillColorWithColor(ctx2, [UIColor blackColor].CGColor); 60 | CGContextFillRect(ctx2, rect); 61 | CGContextTranslateCTM(ctx2, 0.0, rect.size.height); 62 | CGContextScaleCTM(ctx2, 1.0, -1.0); 63 | CGContextClipToMask(ctx2, rect, textImage.CGImage); 64 | CGContextClearRect(ctx2, rect); 65 | CGContextRestoreGState(ctx2); 66 | 67 | UIImage *inverted = UIGraphicsGetImageFromCurrentImageContext(); 68 | CGContextClearRect(ctx2, rect); 69 | 70 | CGContextSaveGState(ctx2); 71 | CGContextSetFillColorWithColor(ctx2, _innerGlowColor.CGColor); 72 | CGContextSetShadowWithColor(ctx2, CGSizeZero, _innerGlowSize, _innerGlowColor.CGColor); 73 | [inverted drawAtPoint:CGPointZero]; 74 | CGContextTranslateCTM(ctx2, 0.0, rect.size.height); 75 | CGContextScaleCTM(ctx2, 1.0, -1.0); 76 | CGContextClipToMask(ctx2, rect, inverted.CGImage); 77 | CGContextClearRect(ctx2, rect); 78 | CGContextRestoreGState(ctx2); 79 | 80 | UIImage *innerShadow = UIGraphicsGetImageFromCurrentImageContext(); 81 | 82 | UIGraphicsEndImageContext(); 83 | [innerShadow drawAtPoint:rect.origin]; 84 | } 85 | } 86 | 87 | - (void)drawTextInRectForIOS6:(CGRect)rect 88 | { 89 | CGContextRef ctx = UIGraphicsGetCurrentContext(); 90 | CGContextSaveGState(ctx); 91 | if (self.glowSize > 0) { 92 | CGContextSetShadow(ctx, CGSizeZero, _glowSize); 93 | CGContextSetShadowWithColor(ctx, CGSizeZero, _glowSize, _glowColor.CGColor); 94 | } 95 | [super drawTextInRect:rect]; 96 | CGContextRestoreGState(ctx); 97 | 98 | if (_innerGlowSize > 0) { 99 | 100 | UIGraphicsBeginImageContextWithOptions(rect.size, NO, 0.0); 101 | 102 | CGContextRef ctx2 = UIGraphicsGetCurrentContext(); 103 | [super drawTextInRect:rect]; 104 | 105 | UIImage *textImage = UIGraphicsGetImageFromCurrentImageContext(); 106 | CGContextClearRect(ctx2, rect); 107 | 108 | CGContextSaveGState(ctx2); 109 | CGContextSetFillColorWithColor(ctx2, [UIColor blackColor].CGColor); 110 | CGContextFillRect(ctx2, rect); 111 | CGContextTranslateCTM(ctx2, 0.0, rect.size.height); 112 | CGContextScaleCTM(ctx2, 1.0, -1.0); 113 | CGContextClipToMask(ctx2, rect, textImage.CGImage); 114 | CGContextClearRect(ctx2, rect); 115 | CGContextRestoreGState(ctx2); 116 | 117 | UIImage *inverted = UIGraphicsGetImageFromCurrentImageContext(); 118 | CGContextClearRect(ctx2, rect); 119 | 120 | CGContextSaveGState(ctx2); 121 | CGContextSetFillColorWithColor(ctx2, _innerGlowColor.CGColor); 122 | CGContextSetShadowWithColor(ctx2, CGSizeZero, _innerGlowSize, _innerGlowColor.CGColor); 123 | [inverted drawAtPoint:CGPointZero]; 124 | CGContextTranslateCTM(ctx2, 0.0, rect.size.height); 125 | CGContextScaleCTM(ctx2, 1.0, -1.0); 126 | CGContextClipToMask(ctx2, rect, inverted.CGImage); 127 | CGContextClearRect(ctx2, rect); 128 | CGContextRestoreGState(ctx2); 129 | 130 | UIImage *innerShadow = UIGraphicsGetImageFromCurrentImageContext(); 131 | 132 | UIGraphicsEndImageContext(); 133 | [innerShadow drawAtPoint:rect.origin]; 134 | } 135 | } 136 | 137 | - (void)drawTextInRect:(CGRect)rect 138 | { 139 | if (self.text == nil || self.text.length == 0) { 140 | return; 141 | } 142 | if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0")) { 143 | [self drawTextInRectForIOS7:rect]; 144 | } else { 145 | [self drawTextInRectForIOS6:rect]; 146 | } 147 | } 148 | 149 | @end 150 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/.gitignore: -------------------------------------------------------------------------------- 1 | Pods/ 2 | FBGlowLabelDemo.xcworkspace 3 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemo.build/FBGlowLabelDemo-all-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemo.build/FBGlowLabelDemo-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemo.build/FBGlowLabelDemo-own-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemo.build/FBGlowLabelDemo-project-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@lwwddFBAppDelegate.h/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/FBGlowLabelDemo/FBViewController.hFBGlowLabelDemo-Prefix.pch -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemo.build/FBGlowLabelDemo.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemo.build/FBGlowLabelDemo.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemoTests.build/FBGlowLabelDemoTests-all-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemoTests.build/FBGlowLabelDemoTests-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemoTests.build/FBGlowLabelDemoTests-own-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemoTests.build/FBGlowLabelDemoTests-project-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@lwwddFBAppDelegate.h/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/FBGlowLabelDemo/FBViewController.hFBGlowLabelDemo-Prefix.pch -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemoTests.build/FBGlowLabelDemoTests.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/FBGlowLabelDemo.build/Debug-iphonesimulator/FBGlowLabelDemoTests.build/FBGlowLabelDemoTests.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel-all-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel-all-target-headers.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel-own-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel-own-target-headers.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel-project-headers.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-FBGlowLabel.build/Pods-FBGlowLabel.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods.build/Pods-all-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods.build/Pods-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods.build/Pods-own-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods.build/Pods-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods.build/Pods-project-headers.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods.build/Pods.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods.build/Pods.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m \ 3 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.h 4 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.dia -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m 3 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.dia -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel.LinkFileList: -------------------------------------------------------------------------------- 1 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o 2 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o 3 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-all-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-all-target-headers.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-own-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-own-target-headers.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-project-headers.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel.dep: -------------------------------------------------------------------------------- 1 | 26a8393c718c369ba7068e166a82e030 5da71c3493a7f15ae2364349cfa3def4 ffffffffffffffffffffffffffffffff 0 /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a 2 | 5ca64048deb9a6761eae763d702cb51d a979a2d1d3060865d3bea3183f2b6464 ffffffffffffffffffffffffffffffff 3496 /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o 3 | 39bd1f7f2d34db50d9391c91af9075b3 eacac4da51ef0f17b32f47a28ad861a7 ffffffffffffffffffffffffffffffff 59936 /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o 4 | 0000000052d212f70000000000000b24 5ca64048deeb3a4d1eae763d702cbeb1 ffffffffffffffffffffffffffffffff 114708 /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch 5 | 0000000052d212f70000000000000b24 39bd1f7f2d664d72d9391c91af906ba7 ffffffffffffffffffffffffffffffff 115104 /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch 6 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/build-state.dat: -------------------------------------------------------------------------------- 1 | TPods-FBGlowLabel 2 | v6 3 | r1 4 | cCheck dependencies 5 | cProcessPCH /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 6 | cProcessPCH /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 7 | cCompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 8 | cCompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 9 | cLibtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a normal i386 10 | 11 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/Foundation.framework/Foundation 12 | c000000005268C3990000000000A92BC0 13 | t1382597529 14 | s11086784 15 | 16 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/QuartzCore.framework/QuartzCore 17 | c000000005268C39A0000000000640E80 18 | t1382597530 19 | s6557312 20 | 21 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk 22 | c000000005268C3EE0000000000000176 23 | t1382597614 24 | s374 25 | 26 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/SDKSettings.plist 27 | c00000000523A5F7F00000000000003B5 28 | t1379557247 29 | s949 30 | 31 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/System/Library/CoreServices/SystemVersion.plist 32 | c000000005268C3A300000000000001A0 33 | t1382597539 34 | s416 35 | 36 | N/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/5.0/include/module.map 37 | c00000000523A5F980000000000000AC9 38 | t1379557272 39 | s2761 40 | 41 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m 42 | c00000000528084D50000000000001530 43 | t1384154325 44 | s5424 45 | 46 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o 47 | t1384156963 48 | s59936 49 | 50 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o 51 | t1384156963 52 | s3496 53 | 54 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel.LinkFileList 55 | c0000000052808F22000000000000016B 56 | t1384156962 57 | s363 58 | 59 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch 60 | t1384156963 61 | s115104 62 | 63 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch 64 | t1384156963 65 | s114708 66 | 67 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a 68 | t2 69 | s0 70 | 71 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m 72 | c0000000052808ECC0000000000000088 73 | t1384156876 74 | s136 75 | 76 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch 77 | c0000000052808ECC000000000000004D 78 | t1384156876 79 | s77 80 | 81 | CBuild AST from /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m 82 | r0 83 | 84 | CBuild AST from /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m 85 | r0 86 | 87 | CCheck dependencies 88 | r0 89 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection18"Check dependencies18"Check dependencies0c5ae4a2c630b841^0265eba2c630b841^---0#1#1#--18"Check dependencies36"AE35A4F0-B649-40B1-8CB6-1AAC464B318F- 90 | 91 | CCompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 92 | s405849763.012397 93 | e405849763.104105 94 | r1 95 | xCompileC 96 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o 97 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m 98 | xnormal 99 | xi386 100 | xobjective-c 101 | xcom.apple.compilers.llvm.clang.1_0.compiler 102 | d/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m 103 | d/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.h 104 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection91"Compile /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m336"CompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compilerfe4603a3c630b841^e3a61aa3c630b841^---0#0#1#-19%DVTDocumentLocation2@99"file://localhost/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m0000000000000000^4516"CompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods setenv LANG en_US.US-ASCII setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fmodules -fmodules-cache-path=/Users/lyokato/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=6.0 -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-generated-files.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-own-target-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-all-target-headers.hmap -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-project-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/include -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/DerivedSources/i386 -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/DerivedSources -F/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator -fobjc-arc -include /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch -MMD -MT dependencies -MF /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.d --serialize-diagnostics /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.dia -c /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabel/Classes/FBGlowLabel.m -o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/FBGlowLabel.o 36"A0A1EB1C-8048-43E3-8497-2729D8AC64B1- 105 | b151AB126-58D8-45D5-9D86-E7FB24CE8C17 106 | 107 | CCompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 108 | s405849763.012394 109 | e405849763.052355 110 | r1 111 | xCompileC 112 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o 113 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m 114 | xnormal 115 | xi386 116 | xobjective-c 117 | xcom.apple.compilers.llvm.clang.1_0.compiler 118 | d/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m 119 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection103"Compile /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m288"CompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o Pods-FBGlowLabel-dummy.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compilere44c03a3c630b841^45670da3c630b841^---0#0#1#-19%DVTDocumentLocation2@111"file://localhost/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m0000000000000000^4502"CompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o Pods-FBGlowLabel-dummy.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods setenv LANG en_US.US-ASCII setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fmodules -fmodules-cache-path=/Users/lyokato/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=6.0 -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-generated-files.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-own-target-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-all-target-headers.hmap -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-project-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/include -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/DerivedSources/i386 -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/DerivedSources -F/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator -include /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch -MMD -MT dependencies -MF /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.d --serialize-diagnostics /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.dia -c /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m -o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel-dummy.o 36"5BB022E5-B292-4DB0-8C1F-F2FE0A50031F- 120 | b151AB126-58D8-45D5-9D86-E7FB24CE8C17 121 | 122 | CLibtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a normal i386 123 | s405849763.112439 124 | e405849763.119463 125 | r1 126 | xLibtool 127 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a 128 | xnormal 129 | xi386 130 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection144"Libtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a normal i386144"Libtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a normal i38638db1ca3c630b841^74951ea3c630b841^---0#0#1#--1190"Libtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a normal i386 cd /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods setenv IPHONEOS_DEPLOYMENT_TARGET 6.0 setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only i386 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -L/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator -filelist /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Objects-normal/i386/Pods-FBGlowLabel.LinkFileList -framework Foundation -framework QuartzCore -o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a 36"80397C02-4DEE-4347-963F-C3A02D67D6B3- 131 | b151AB126-58D8-45D5-9D86-E7FB24CE8C17 132 | 133 | CProcessPCH /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 134 | s405849762.925656 135 | e405849763.004158 136 | r1 137 | xProcessPCH 138 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch 139 | xPods-FBGlowLabel-prefix.pch 140 | xnormal 141 | xi386 142 | xobjective-c 143 | xcom.apple.compilers.llvm.clang.1_0.compiler 144 | d/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch 145 | d/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-environment.h 146 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection38"Precompile Pods-FBGlowLabel-prefix.pch296"ProcessPCH /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler2b2feda2c630b841^7e1801a3c630b841^---0#0#1#-19%DVTDocumentLocation2@114"file://localhost/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch0000000000000000^4341"ProcessPCH /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods setenv LANG en_US.US-ASCII setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fmodules -fmodules-cache-path=/Users/lyokato/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=6.0 -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-generated-files.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-own-target-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-all-target-headers.hmap -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-project-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/include -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/DerivedSources/i386 -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/DerivedSources -F/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator -fobjc-arc --serialize-diagnostics /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.dia -MMD -MT dependencies -MF /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.d -c /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch -o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch 36"6252B946-815A-4B21-8BE2-F3EE71660255- 147 | b151AB126-58D8-45D5-9D86-E7FB24CE8C17 148 | 149 | CProcessPCH /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 150 | s405849762.926770 151 | e405849763.004158 152 | r1 153 | xProcessPCH 154 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch 155 | xPods-FBGlowLabel-prefix.pch 156 | xnormal 157 | xi386 158 | xobjective-c 159 | xcom.apple.compilers.llvm.clang.1_0.compiler 160 | d/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch 161 | d/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-environment.h 162 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection38"Precompile Pods-FBGlowLabel-prefix.pch296"ProcessPCH /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler0762eda2c630b841^491101a3c630b841^---0#0#1#-19%DVTDocumentLocation2@114"file://localhost/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch0000000000000000^4330"ProcessPCH /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods setenv LANG en_US.US-ASCII setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fmodules -fmodules-cache-path=/Users/lyokato/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=6.0 -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-generated-files.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-own-target-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-all-target-headers.hmap -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/Pods-FBGlowLabel-project-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/include -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/DerivedSources/i386 -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-FBGlowLabel.build/DerivedSources -F/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator --serialize-diagnostics /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.dia -MMD -MT dependencies -MF /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.d -c /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch -o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch 36"EF8FB01C-FB1F-414B-90D6-A80D6F797BD8- 163 | b151AB126-58D8-45D5-9D86-E7FB24CE8C17 164 | 165 | CProcessPCH /Users/lyokato/Library/Developer/Xcode/DerivedData/FBGlowLabelDemo-cbziepbosrymqvavynpsqdztoncu/Index/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bzrzqzymiuiyqjctduzpalzbtklv_ast/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.astbuilder 166 | r0 167 | 168 | CProcessPCH /Users/lyokato/Library/Developer/Xcode/DerivedData/FBGlowLabelDemo-cbziepbosrymqvavynpsqdztoncu/Index/PrecompiledHeaders/Pods-FBGlowLabel-prefix-gdhluteplzlczwgcpchldrbtkxuh_ast/Pods-FBGlowLabel-prefix.pch.pch Pods-FBGlowLabel-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.astbuilder 169 | r0 170 | 171 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m 3 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.dia -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods.LinkFileList: -------------------------------------------------------------------------------- 1 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o 2 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-all-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-own-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-project-headers.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods.dep: -------------------------------------------------------------------------------- 1 | b7a295e2a6de1555726c34818daa25ea e73ad1e5eecdb13d40997a83df5765c1 ffffffffffffffffffffffffffffffff 0 /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a 2 | 0000000000e84d8800000000000008ac b7a295e2a63658aa726c34818d03fd6b ffffffffffffffffffffffffffffffff 3400 /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o 3 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods.hmap -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/build-state.dat: -------------------------------------------------------------------------------- 1 | TPods 2 | v6 3 | r1 4 | cCheck dependencies 5 | cCompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 6 | cLibtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a normal i386 7 | 8 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/Foundation.framework/Foundation 9 | c000000005268C3990000000000A92BC0 10 | t1382597529 11 | s11086784 12 | 13 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk 14 | c000000005268C3EE0000000000000176 15 | t1382597614 16 | s374 17 | 18 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/SDKSettings.plist 19 | c00000000523A5F7F00000000000003B5 20 | t1379557247 21 | s949 22 | 23 | N/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/System/Library/CoreServices/SystemVersion.plist 24 | c000000005268C3A300000000000001A0 25 | t1382597539 26 | s416 27 | 28 | N/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/5.0/include/module.map 29 | c00000000523A5F980000000000000AC9 30 | t1379557272 31 | s2761 32 | 33 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o 34 | t1384156963 35 | s3400 36 | 37 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods.LinkFileList 38 | c0000000052808F2300000000000000A3 39 | t1384156963 40 | s163 41 | 42 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a 43 | c0000000052808F23000000000000FA38 44 | t1384156963 45 | s64056 46 | 47 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a 48 | t2 49 | s0 50 | 51 | N/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m 52 | c0000000052808ECC0000000000000070 53 | t1384156876 54 | s112 55 | 56 | CBuild AST from /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m 57 | r0 58 | 59 | CCheck dependencies 60 | r0 61 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection18"Check dependencies18"Check dependenciesc3d422a3c630b841^551423a3c630b841^---0#1#1#--18"Check dependencies36"70A2D7C0-0834-432E-A8E7-E71E75793795- 62 | 63 | CCompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler 64 | s405849763.138938 65 | e405849763.166974 66 | r1 67 | xCompileC 68 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o 69 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m 70 | xnormal 71 | xi386 72 | xobjective-c 73 | xcom.apple.compilers.llvm.clang.1_0.compiler 74 | d/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m 75 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection91"Compile /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m252"CompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o Pods-dummy.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compilerd1ad23a3c630b841^77bf2aa3c630b841^---0#0#1#-19%DVTDocumentLocation2@99"file://localhost/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m0000000000000000^3903"CompileC /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o Pods-dummy.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods setenv LANG en_US.US-ASCII setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fmodules -fmodules-cache-path=/Users/lyokato/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=6.0 -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-generated-files.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-own-target-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-all-target-headers.hmap -iquote /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Pods-project-headers.hmap -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/include -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods/Headers -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods/Headers/FBGlowLabel -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/DerivedSources/i386 -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/DerivedSources -F/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator -MMD -MT dependencies -MF /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.d --serialize-diagnostics /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.dia -c /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-dummy.m -o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods-dummy.o 36"18D7963B-3696-4171-BCC2-843F280ED083- 76 | b85A07E87-9498-46DF-B32C-757E9AAB4A58 77 | 78 | CLibtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a normal i386 79 | s405849763.175458 80 | e405849763.183135 81 | r1 82 | xLibtool 83 | x/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a 84 | xnormal 85 | xi386 86 | lSLF06#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection132"Libtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a normal i386132"Libtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a normal i386d3f92ca3c630b841^97e22ea3c630b841^---0#0#1#--1139"Libtool /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a normal i386 cd /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods setenv IPHONEOS_DEPLOYMENT_TARGET 6.0 setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only i386 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -L/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator -filelist /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods.build/Objects-normal/i386/Pods.LinkFileList -framework Foundation -lPods-FBGlowLabel -o /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a 36"62985511-0BC9-4277-BC23-D9A3643FD6F3- 87 | b85A07E87-9498-46DF-B32C-757E9AAB4A58 88 | 89 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch \ 3 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-environment.h 4 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.dia -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-bezoaflfewgthscvshtpkeudozwn/Pods-FBGlowLabel-prefix.pch.pch.hash-criteria: -------------------------------------------------------------------------------- 1 | Contents of /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch 2 | -x 3 | objective-c 4 | -arch 5 | i386 6 | -std=gnu99 7 | -fmodules 8 | -fmodules-cache-path=/Users/lyokato/Library/Developer/Xcode/DerivedData/ModuleCache 9 | -fpascal-strings 10 | -O0 11 | -DDEBUG=1 12 | -DCOCOAPODS=1 13 | -isysroot 14 | /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk 15 | -fexceptions 16 | -fasm-blocks 17 | -g 18 | -fobjc-abi-version=2 19 | -fobjc-legacy-dispatch 20 | -mios-simulator-version-min=6.0 21 | -iquote 22 | -iquote 23 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/include 24 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders 25 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders/FBGlowLabel 26 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers 27 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers/FBGlowLabel 28 | -F/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator 29 | -fobjc-arc 30 | i386-apple-darwin12.5.0 31 | "4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)" 32 | SDK_PRODUCT_BUILD_VERSION=11B508 33 | 11B508 34 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch \ 3 | /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-environment.h 4 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.dia -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Intermediates/PrecompiledHeaders/Pods-FBGlowLabel-prefix-dznwooeywvhghegvfyzhtyhdpkmv/Pods-FBGlowLabel-prefix.pch.pch.hash-criteria: -------------------------------------------------------------------------------- 1 | Contents of /Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch 2 | -x 3 | objective-c 4 | -arch 5 | i386 6 | -std=gnu99 7 | -fmodules 8 | -fmodules-cache-path=/Users/lyokato/Library/Developer/Xcode/DerivedData/ModuleCache 9 | -fpascal-strings 10 | -O0 11 | -DDEBUG=1 12 | -DCOCOAPODS=1 13 | -isysroot 14 | /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk 15 | -fexceptions 16 | -fasm-blocks 17 | -g 18 | -fobjc-abi-version=2 19 | -fobjc-legacy-dispatch 20 | -mios-simulator-version-min=6.0 21 | -iquote 22 | -iquote 23 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/include 24 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders 25 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/BuildHeaders/FBGlowLabel 26 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers 27 | -I/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Pods/Headers/FBGlowLabel 28 | -F/Users/lyokato/Dropbox/src/objectivec/FBGlowLabel/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator 29 | i386-apple-darwin12.5.0 30 | "4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)" 31 | SDK_PRODUCT_BUILD_VERSION=11B508 32 | 11B508 33 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods-FBGlowLabel.a -------------------------------------------------------------------------------- /FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyokato/FBGlowLabel/b32e566de10ba470566f1c4b02ca4140b94164e5/FBGlowLabelDemo/Build/Products/Debug-iphonesimulator/libPods.a -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 8D308FA37E3847B5B479C143 /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 92AFFABD23F446DABFB4CB89 /* libPods.a */; }; 11 | 90DA87BD1830C61100672B72 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 90DA87BC1830C61100672B72 /* Foundation.framework */; }; 12 | 90DA87BF1830C61100672B72 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 90DA87BE1830C61100672B72 /* CoreGraphics.framework */; }; 13 | 90DA87C11830C61100672B72 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 90DA87C01830C61100672B72 /* UIKit.framework */; }; 14 | 90DA87C71830C61100672B72 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 90DA87C51830C61100672B72 /* InfoPlist.strings */; }; 15 | 90DA87C91830C61100672B72 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DA87C81830C61100672B72 /* main.m */; }; 16 | 90DA87CD1830C61100672B72 /* FBAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DA87CC1830C61100672B72 /* FBAppDelegate.m */; }; 17 | 90DA87D01830C61100672B72 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 90DA87CE1830C61100672B72 /* Main.storyboard */; }; 18 | 90DA87D31830C61100672B72 /* FBViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DA87D21830C61100672B72 /* FBViewController.m */; }; 19 | 90DA87D51830C61100672B72 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 90DA87D41830C61100672B72 /* Images.xcassets */; }; 20 | 90DA87DC1830C61100672B72 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 90DA87DB1830C61100672B72 /* XCTest.framework */; }; 21 | 90DA87DD1830C61100672B72 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 90DA87BC1830C61100672B72 /* Foundation.framework */; }; 22 | 90DA87DE1830C61100672B72 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 90DA87C01830C61100672B72 /* UIKit.framework */; }; 23 | 90DA87E61830C61100672B72 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 90DA87E41830C61100672B72 /* InfoPlist.strings */; }; 24 | 90DA87E81830C61100672B72 /* FBGlowLabelDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DA87E71830C61100672B72 /* FBGlowLabelDemoTests.m */; }; 25 | /* End PBXBuildFile section */ 26 | 27 | /* Begin PBXContainerItemProxy section */ 28 | 90DA87DF1830C61100672B72 /* PBXContainerItemProxy */ = { 29 | isa = PBXContainerItemProxy; 30 | containerPortal = 90DA87B11830C61100672B72 /* Project object */; 31 | proxyType = 1; 32 | remoteGlobalIDString = 90DA87B81830C61100672B72; 33 | remoteInfo = FBGlowLabelDemo; 34 | }; 35 | /* End PBXContainerItemProxy section */ 36 | 37 | /* Begin PBXFileReference section */ 38 | 28A3C5109A3C43AFBDC7150C /* Pods.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.xcconfig; path = Pods/Pods.xcconfig; sourceTree = ""; }; 39 | 90DA87B91830C61100672B72 /* FBGlowLabelDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FBGlowLabelDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 40 | 90DA87BC1830C61100672B72 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 41 | 90DA87BE1830C61100672B72 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 42 | 90DA87C01830C61100672B72 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 43 | 90DA87C41830C61100672B72 /* FBGlowLabelDemo-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "FBGlowLabelDemo-Info.plist"; sourceTree = ""; }; 44 | 90DA87C61830C61100672B72 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 45 | 90DA87C81830C61100672B72 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 46 | 90DA87CA1830C61100672B72 /* FBGlowLabelDemo-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "FBGlowLabelDemo-Prefix.pch"; sourceTree = ""; }; 47 | 90DA87CB1830C61100672B72 /* FBAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBAppDelegate.h; sourceTree = ""; }; 48 | 90DA87CC1830C61100672B72 /* FBAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBAppDelegate.m; sourceTree = ""; }; 49 | 90DA87CF1830C61100672B72 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 50 | 90DA87D11830C61100672B72 /* FBViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBViewController.h; sourceTree = ""; }; 51 | 90DA87D21830C61100672B72 /* FBViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBViewController.m; sourceTree = ""; }; 52 | 90DA87D41830C61100672B72 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 53 | 90DA87DA1830C61100672B72 /* FBGlowLabelDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FBGlowLabelDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | 90DA87DB1830C61100672B72 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 55 | 90DA87E31830C61100672B72 /* FBGlowLabelDemoTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "FBGlowLabelDemoTests-Info.plist"; sourceTree = ""; }; 56 | 90DA87E51830C61100672B72 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 57 | 90DA87E71830C61100672B72 /* FBGlowLabelDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBGlowLabelDemoTests.m; sourceTree = ""; }; 58 | 92AFFABD23F446DABFB4CB89 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | /* End PBXFileReference section */ 60 | 61 | /* Begin PBXFrameworksBuildPhase section */ 62 | 90DA87B61830C61100672B72 /* Frameworks */ = { 63 | isa = PBXFrameworksBuildPhase; 64 | buildActionMask = 2147483647; 65 | files = ( 66 | 90DA87BF1830C61100672B72 /* CoreGraphics.framework in Frameworks */, 67 | 90DA87C11830C61100672B72 /* UIKit.framework in Frameworks */, 68 | 90DA87BD1830C61100672B72 /* Foundation.framework in Frameworks */, 69 | 8D308FA37E3847B5B479C143 /* libPods.a in Frameworks */, 70 | ); 71 | runOnlyForDeploymentPostprocessing = 0; 72 | }; 73 | 90DA87D71830C61100672B72 /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | 90DA87DC1830C61100672B72 /* XCTest.framework in Frameworks */, 78 | 90DA87DE1830C61100672B72 /* UIKit.framework in Frameworks */, 79 | 90DA87DD1830C61100672B72 /* Foundation.framework in Frameworks */, 80 | ); 81 | runOnlyForDeploymentPostprocessing = 0; 82 | }; 83 | /* End PBXFrameworksBuildPhase section */ 84 | 85 | /* Begin PBXGroup section */ 86 | 90DA87B01830C61100672B72 = { 87 | isa = PBXGroup; 88 | children = ( 89 | 90DA87C21830C61100672B72 /* FBGlowLabelDemo */, 90 | 90DA87E11830C61100672B72 /* FBGlowLabelDemoTests */, 91 | 90DA87BB1830C61100672B72 /* Frameworks */, 92 | 90DA87BA1830C61100672B72 /* Products */, 93 | 28A3C5109A3C43AFBDC7150C /* Pods.xcconfig */, 94 | ); 95 | sourceTree = ""; 96 | }; 97 | 90DA87BA1830C61100672B72 /* Products */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 90DA87B91830C61100672B72 /* FBGlowLabelDemo.app */, 101 | 90DA87DA1830C61100672B72 /* FBGlowLabelDemoTests.xctest */, 102 | ); 103 | name = Products; 104 | sourceTree = ""; 105 | }; 106 | 90DA87BB1830C61100672B72 /* Frameworks */ = { 107 | isa = PBXGroup; 108 | children = ( 109 | 90DA87BC1830C61100672B72 /* Foundation.framework */, 110 | 90DA87BE1830C61100672B72 /* CoreGraphics.framework */, 111 | 90DA87C01830C61100672B72 /* UIKit.framework */, 112 | 90DA87DB1830C61100672B72 /* XCTest.framework */, 113 | 92AFFABD23F446DABFB4CB89 /* libPods.a */, 114 | ); 115 | name = Frameworks; 116 | sourceTree = ""; 117 | }; 118 | 90DA87C21830C61100672B72 /* FBGlowLabelDemo */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 90DA87CB1830C61100672B72 /* FBAppDelegate.h */, 122 | 90DA87CC1830C61100672B72 /* FBAppDelegate.m */, 123 | 90DA87CE1830C61100672B72 /* Main.storyboard */, 124 | 90DA87D11830C61100672B72 /* FBViewController.h */, 125 | 90DA87D21830C61100672B72 /* FBViewController.m */, 126 | 90DA87D41830C61100672B72 /* Images.xcassets */, 127 | 90DA87C31830C61100672B72 /* Supporting Files */, 128 | ); 129 | path = FBGlowLabelDemo; 130 | sourceTree = ""; 131 | }; 132 | 90DA87C31830C61100672B72 /* Supporting Files */ = { 133 | isa = PBXGroup; 134 | children = ( 135 | 90DA87C41830C61100672B72 /* FBGlowLabelDemo-Info.plist */, 136 | 90DA87C51830C61100672B72 /* InfoPlist.strings */, 137 | 90DA87C81830C61100672B72 /* main.m */, 138 | 90DA87CA1830C61100672B72 /* FBGlowLabelDemo-Prefix.pch */, 139 | ); 140 | name = "Supporting Files"; 141 | sourceTree = ""; 142 | }; 143 | 90DA87E11830C61100672B72 /* FBGlowLabelDemoTests */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | 90DA87E71830C61100672B72 /* FBGlowLabelDemoTests.m */, 147 | 90DA87E21830C61100672B72 /* Supporting Files */, 148 | ); 149 | path = FBGlowLabelDemoTests; 150 | sourceTree = ""; 151 | }; 152 | 90DA87E21830C61100672B72 /* Supporting Files */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | 90DA87E31830C61100672B72 /* FBGlowLabelDemoTests-Info.plist */, 156 | 90DA87E41830C61100672B72 /* InfoPlist.strings */, 157 | ); 158 | name = "Supporting Files"; 159 | sourceTree = ""; 160 | }; 161 | /* End PBXGroup section */ 162 | 163 | /* Begin PBXNativeTarget section */ 164 | 90DA87B81830C61100672B72 /* FBGlowLabelDemo */ = { 165 | isa = PBXNativeTarget; 166 | buildConfigurationList = 90DA87EB1830C61100672B72 /* Build configuration list for PBXNativeTarget "FBGlowLabelDemo" */; 167 | buildPhases = ( 168 | 9AE8B2CE2640445F9009018F /* Check Pods Manifest.lock */, 169 | 90DA87B51830C61100672B72 /* Sources */, 170 | 90DA87B61830C61100672B72 /* Frameworks */, 171 | 90DA87B71830C61100672B72 /* Resources */, 172 | 2014BFDA5ED64713BE4F3350 /* Copy Pods Resources */, 173 | ); 174 | buildRules = ( 175 | ); 176 | dependencies = ( 177 | ); 178 | name = FBGlowLabelDemo; 179 | productName = FBGlowLabelDemo; 180 | productReference = 90DA87B91830C61100672B72 /* FBGlowLabelDemo.app */; 181 | productType = "com.apple.product-type.application"; 182 | }; 183 | 90DA87D91830C61100672B72 /* FBGlowLabelDemoTests */ = { 184 | isa = PBXNativeTarget; 185 | buildConfigurationList = 90DA87EE1830C61100672B72 /* Build configuration list for PBXNativeTarget "FBGlowLabelDemoTests" */; 186 | buildPhases = ( 187 | 90DA87D61830C61100672B72 /* Sources */, 188 | 90DA87D71830C61100672B72 /* Frameworks */, 189 | 90DA87D81830C61100672B72 /* Resources */, 190 | ); 191 | buildRules = ( 192 | ); 193 | dependencies = ( 194 | 90DA87E01830C61100672B72 /* PBXTargetDependency */, 195 | ); 196 | name = FBGlowLabelDemoTests; 197 | productName = FBGlowLabelDemoTests; 198 | productReference = 90DA87DA1830C61100672B72 /* FBGlowLabelDemoTests.xctest */; 199 | productType = "com.apple.product-type.bundle.unit-test"; 200 | }; 201 | /* End PBXNativeTarget section */ 202 | 203 | /* Begin PBXProject section */ 204 | 90DA87B11830C61100672B72 /* Project object */ = { 205 | isa = PBXProject; 206 | attributes = { 207 | CLASSPREFIX = FB; 208 | LastUpgradeCheck = 0500; 209 | ORGANIZATIONNAME = OCTUDIO; 210 | TargetAttributes = { 211 | 90DA87D91830C61100672B72 = { 212 | TestTargetID = 90DA87B81830C61100672B72; 213 | }; 214 | }; 215 | }; 216 | buildConfigurationList = 90DA87B41830C61100672B72 /* Build configuration list for PBXProject "FBGlowLabelDemo" */; 217 | compatibilityVersion = "Xcode 3.2"; 218 | developmentRegion = English; 219 | hasScannedForEncodings = 0; 220 | knownRegions = ( 221 | en, 222 | Base, 223 | ); 224 | mainGroup = 90DA87B01830C61100672B72; 225 | productRefGroup = 90DA87BA1830C61100672B72 /* Products */; 226 | projectDirPath = ""; 227 | projectRoot = ""; 228 | targets = ( 229 | 90DA87B81830C61100672B72 /* FBGlowLabelDemo */, 230 | 90DA87D91830C61100672B72 /* FBGlowLabelDemoTests */, 231 | ); 232 | }; 233 | /* End PBXProject section */ 234 | 235 | /* Begin PBXResourcesBuildPhase section */ 236 | 90DA87B71830C61100672B72 /* Resources */ = { 237 | isa = PBXResourcesBuildPhase; 238 | buildActionMask = 2147483647; 239 | files = ( 240 | 90DA87D51830C61100672B72 /* Images.xcassets in Resources */, 241 | 90DA87C71830C61100672B72 /* InfoPlist.strings in Resources */, 242 | 90DA87D01830C61100672B72 /* Main.storyboard in Resources */, 243 | ); 244 | runOnlyForDeploymentPostprocessing = 0; 245 | }; 246 | 90DA87D81830C61100672B72 /* Resources */ = { 247 | isa = PBXResourcesBuildPhase; 248 | buildActionMask = 2147483647; 249 | files = ( 250 | 90DA87E61830C61100672B72 /* InfoPlist.strings in Resources */, 251 | ); 252 | runOnlyForDeploymentPostprocessing = 0; 253 | }; 254 | /* End PBXResourcesBuildPhase section */ 255 | 256 | /* Begin PBXShellScriptBuildPhase section */ 257 | 2014BFDA5ED64713BE4F3350 /* Copy Pods Resources */ = { 258 | isa = PBXShellScriptBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | ); 262 | inputPaths = ( 263 | ); 264 | name = "Copy Pods Resources"; 265 | outputPaths = ( 266 | ); 267 | runOnlyForDeploymentPostprocessing = 0; 268 | shellPath = /bin/sh; 269 | shellScript = "\"${SRCROOT}/Pods/Pods-resources.sh\"\n"; 270 | showEnvVarsInLog = 0; 271 | }; 272 | 9AE8B2CE2640445F9009018F /* Check Pods Manifest.lock */ = { 273 | isa = PBXShellScriptBuildPhase; 274 | buildActionMask = 2147483647; 275 | files = ( 276 | ); 277 | inputPaths = ( 278 | ); 279 | name = "Check Pods Manifest.lock"; 280 | outputPaths = ( 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | shellPath = /bin/sh; 284 | 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"; 285 | showEnvVarsInLog = 0; 286 | }; 287 | /* End PBXShellScriptBuildPhase section */ 288 | 289 | /* Begin PBXSourcesBuildPhase section */ 290 | 90DA87B51830C61100672B72 /* Sources */ = { 291 | isa = PBXSourcesBuildPhase; 292 | buildActionMask = 2147483647; 293 | files = ( 294 | 90DA87CD1830C61100672B72 /* FBAppDelegate.m in Sources */, 295 | 90DA87C91830C61100672B72 /* main.m in Sources */, 296 | 90DA87D31830C61100672B72 /* FBViewController.m in Sources */, 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | }; 300 | 90DA87D61830C61100672B72 /* Sources */ = { 301 | isa = PBXSourcesBuildPhase; 302 | buildActionMask = 2147483647; 303 | files = ( 304 | 90DA87E81830C61100672B72 /* FBGlowLabelDemoTests.m in Sources */, 305 | ); 306 | runOnlyForDeploymentPostprocessing = 0; 307 | }; 308 | /* End PBXSourcesBuildPhase section */ 309 | 310 | /* Begin PBXTargetDependency section */ 311 | 90DA87E01830C61100672B72 /* PBXTargetDependency */ = { 312 | isa = PBXTargetDependency; 313 | target = 90DA87B81830C61100672B72 /* FBGlowLabelDemo */; 314 | targetProxy = 90DA87DF1830C61100672B72 /* PBXContainerItemProxy */; 315 | }; 316 | /* End PBXTargetDependency section */ 317 | 318 | /* Begin PBXVariantGroup section */ 319 | 90DA87C51830C61100672B72 /* InfoPlist.strings */ = { 320 | isa = PBXVariantGroup; 321 | children = ( 322 | 90DA87C61830C61100672B72 /* en */, 323 | ); 324 | name = InfoPlist.strings; 325 | sourceTree = ""; 326 | }; 327 | 90DA87CE1830C61100672B72 /* Main.storyboard */ = { 328 | isa = PBXVariantGroup; 329 | children = ( 330 | 90DA87CF1830C61100672B72 /* Base */, 331 | ); 332 | name = Main.storyboard; 333 | sourceTree = ""; 334 | }; 335 | 90DA87E41830C61100672B72 /* InfoPlist.strings */ = { 336 | isa = PBXVariantGroup; 337 | children = ( 338 | 90DA87E51830C61100672B72 /* en */, 339 | ); 340 | name = InfoPlist.strings; 341 | sourceTree = ""; 342 | }; 343 | /* End PBXVariantGroup section */ 344 | 345 | /* Begin XCBuildConfiguration section */ 346 | 90DA87E91830C61100672B72 /* Debug */ = { 347 | isa = XCBuildConfiguration; 348 | buildSettings = { 349 | ALWAYS_SEARCH_USER_PATHS = NO; 350 | ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; 351 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 352 | CLANG_CXX_LIBRARY = "libc++"; 353 | CLANG_ENABLE_MODULES = YES; 354 | CLANG_ENABLE_OBJC_ARC = YES; 355 | CLANG_WARN_BOOL_CONVERSION = YES; 356 | CLANG_WARN_CONSTANT_CONVERSION = YES; 357 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 358 | CLANG_WARN_EMPTY_BODY = YES; 359 | CLANG_WARN_ENUM_CONVERSION = YES; 360 | CLANG_WARN_INT_CONVERSION = YES; 361 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 362 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 363 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 364 | COPY_PHASE_STRIP = NO; 365 | GCC_C_LANGUAGE_STANDARD = gnu99; 366 | GCC_DYNAMIC_NO_PIC = NO; 367 | GCC_OPTIMIZATION_LEVEL = 0; 368 | GCC_PREPROCESSOR_DEFINITIONS = ( 369 | "DEBUG=1", 370 | "$(inherited)", 371 | ); 372 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 373 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 374 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 375 | GCC_WARN_UNDECLARED_SELECTOR = YES; 376 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 377 | GCC_WARN_UNUSED_FUNCTION = YES; 378 | GCC_WARN_UNUSED_VARIABLE = YES; 379 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 380 | ONLY_ACTIVE_ARCH = YES; 381 | SDKROOT = iphoneos; 382 | }; 383 | name = Debug; 384 | }; 385 | 90DA87EA1830C61100672B72 /* Release */ = { 386 | isa = XCBuildConfiguration; 387 | buildSettings = { 388 | ALWAYS_SEARCH_USER_PATHS = NO; 389 | ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; 390 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 391 | CLANG_CXX_LIBRARY = "libc++"; 392 | CLANG_ENABLE_MODULES = YES; 393 | CLANG_ENABLE_OBJC_ARC = YES; 394 | CLANG_WARN_BOOL_CONVERSION = YES; 395 | CLANG_WARN_CONSTANT_CONVERSION = YES; 396 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 397 | CLANG_WARN_EMPTY_BODY = YES; 398 | CLANG_WARN_ENUM_CONVERSION = YES; 399 | CLANG_WARN_INT_CONVERSION = YES; 400 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 401 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | COPY_PHASE_STRIP = YES; 404 | ENABLE_NS_ASSERTIONS = NO; 405 | GCC_C_LANGUAGE_STANDARD = gnu99; 406 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 407 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 408 | GCC_WARN_UNDECLARED_SELECTOR = YES; 409 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 410 | GCC_WARN_UNUSED_FUNCTION = YES; 411 | GCC_WARN_UNUSED_VARIABLE = YES; 412 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 413 | SDKROOT = iphoneos; 414 | VALIDATE_PRODUCT = YES; 415 | }; 416 | name = Release; 417 | }; 418 | 90DA87EC1830C61100672B72 /* Debug */ = { 419 | isa = XCBuildConfiguration; 420 | baseConfigurationReference = 28A3C5109A3C43AFBDC7150C /* Pods.xcconfig */; 421 | buildSettings = { 422 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 423 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 424 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 425 | GCC_PREFIX_HEADER = "FBGlowLabelDemo/FBGlowLabelDemo-Prefix.pch"; 426 | INFOPLIST_FILE = "FBGlowLabelDemo/FBGlowLabelDemo-Info.plist"; 427 | IPHONEOS_DEPLOYMENT_TARGET = 6.1; 428 | PRODUCT_NAME = "$(TARGET_NAME)"; 429 | WRAPPER_EXTENSION = app; 430 | }; 431 | name = Debug; 432 | }; 433 | 90DA87ED1830C61100672B72 /* Release */ = { 434 | isa = XCBuildConfiguration; 435 | baseConfigurationReference = 28A3C5109A3C43AFBDC7150C /* Pods.xcconfig */; 436 | buildSettings = { 437 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 438 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 439 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 440 | GCC_PREFIX_HEADER = "FBGlowLabelDemo/FBGlowLabelDemo-Prefix.pch"; 441 | INFOPLIST_FILE = "FBGlowLabelDemo/FBGlowLabelDemo-Info.plist"; 442 | IPHONEOS_DEPLOYMENT_TARGET = 6.1; 443 | PRODUCT_NAME = "$(TARGET_NAME)"; 444 | WRAPPER_EXTENSION = app; 445 | }; 446 | name = Release; 447 | }; 448 | 90DA87EF1830C61100672B72 /* Debug */ = { 449 | isa = XCBuildConfiguration; 450 | buildSettings = { 451 | ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; 452 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/FBGlowLabelDemo.app/FBGlowLabelDemo"; 453 | FRAMEWORK_SEARCH_PATHS = ( 454 | "$(SDKROOT)/Developer/Library/Frameworks", 455 | "$(inherited)", 456 | "$(DEVELOPER_FRAMEWORKS_DIR)", 457 | ); 458 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 459 | GCC_PREFIX_HEADER = "FBGlowLabelDemo/FBGlowLabelDemo-Prefix.pch"; 460 | GCC_PREPROCESSOR_DEFINITIONS = ( 461 | "DEBUG=1", 462 | "$(inherited)", 463 | ); 464 | INFOPLIST_FILE = "FBGlowLabelDemoTests/FBGlowLabelDemoTests-Info.plist"; 465 | PRODUCT_NAME = "$(TARGET_NAME)"; 466 | TEST_HOST = "$(BUNDLE_LOADER)"; 467 | WRAPPER_EXTENSION = xctest; 468 | }; 469 | name = Debug; 470 | }; 471 | 90DA87F01830C61100672B72 /* Release */ = { 472 | isa = XCBuildConfiguration; 473 | buildSettings = { 474 | ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; 475 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/FBGlowLabelDemo.app/FBGlowLabelDemo"; 476 | FRAMEWORK_SEARCH_PATHS = ( 477 | "$(SDKROOT)/Developer/Library/Frameworks", 478 | "$(inherited)", 479 | "$(DEVELOPER_FRAMEWORKS_DIR)", 480 | ); 481 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 482 | GCC_PREFIX_HEADER = "FBGlowLabelDemo/FBGlowLabelDemo-Prefix.pch"; 483 | INFOPLIST_FILE = "FBGlowLabelDemoTests/FBGlowLabelDemoTests-Info.plist"; 484 | PRODUCT_NAME = "$(TARGET_NAME)"; 485 | TEST_HOST = "$(BUNDLE_LOADER)"; 486 | WRAPPER_EXTENSION = xctest; 487 | }; 488 | name = Release; 489 | }; 490 | /* End XCBuildConfiguration section */ 491 | 492 | /* Begin XCConfigurationList section */ 493 | 90DA87B41830C61100672B72 /* Build configuration list for PBXProject "FBGlowLabelDemo" */ = { 494 | isa = XCConfigurationList; 495 | buildConfigurations = ( 496 | 90DA87E91830C61100672B72 /* Debug */, 497 | 90DA87EA1830C61100672B72 /* Release */, 498 | ); 499 | defaultConfigurationIsVisible = 0; 500 | defaultConfigurationName = Release; 501 | }; 502 | 90DA87EB1830C61100672B72 /* Build configuration list for PBXNativeTarget "FBGlowLabelDemo" */ = { 503 | isa = XCConfigurationList; 504 | buildConfigurations = ( 505 | 90DA87EC1830C61100672B72 /* Debug */, 506 | 90DA87ED1830C61100672B72 /* Release */, 507 | ); 508 | defaultConfigurationIsVisible = 0; 509 | defaultConfigurationName = Release; 510 | }; 511 | 90DA87EE1830C61100672B72 /* Build configuration list for PBXNativeTarget "FBGlowLabelDemoTests" */ = { 512 | isa = XCConfigurationList; 513 | buildConfigurations = ( 514 | 90DA87EF1830C61100672B72 /* Debug */, 515 | 90DA87F01830C61100672B72 /* Release */, 516 | ); 517 | defaultConfigurationIsVisible = 0; 518 | defaultConfigurationName = Release; 519 | }; 520 | /* End XCConfigurationList section */ 521 | }; 522 | rootObject = 90DA87B11830C61100672B72 /* Project object */; 523 | } 524 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo.xcodeproj/project.xcworkspace/xcshareddata/FBGlowLabelDemo.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | DA0C02F3-713D-42C6-B78D-8256B47FE598 9 | IDESourceControlProjectName 10 | FBGlowLabelDemo 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 903FC0B5-EB4B-4199-B439-A39AE0159690 14 | https://github.com/lyokato/FBGlowLabel.git 15 | 16 | IDESourceControlProjectPath 17 | FBGlowLabelDemo/FBGlowLabelDemo.xcodeproj/project.xcworkspace 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 903FC0B5-EB4B-4199-B439-A39AE0159690 21 | ../../.. 22 | 23 | IDESourceControlProjectURL 24 | https://github.com/lyokato/FBGlowLabel.git 25 | IDESourceControlProjectVersion 26 | 110 27 | IDESourceControlProjectWCCIdentifier 28 | 903FC0B5-EB4B-4199-B439-A39AE0159690 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 903FC0B5-EB4B-4199-B439-A39AE0159690 36 | IDESourceControlWCCName 37 | FBGlowLabel 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo.xcodeproj/xcuserdata/lyokato.xcuserdatad/xcschemes/FBGlowLabelDemo.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 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo.xcodeproj/xcuserdata/lyokato.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | FBGlowLabelDemo.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 90DA87B81830C61100672B72 16 | 17 | primary 18 | 19 | 20 | 90DA87D91830C61100672B72 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo.xcworkspace/xcshareddata/FBGlowLabelDemo.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | 18257EBC-8570-4404-AA2C-709DFE44AF90 9 | IDESourceControlProjectName 10 | FBGlowLabelDemo 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 903FC0B5-EB4B-4199-B439-A39AE0159690 14 | https://github.com/lyokato/FBGlowLabel.git 15 | 16 | IDESourceControlProjectPath 17 | FBGlowLabelDemo/FBGlowLabelDemo.xcworkspace 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 903FC0B5-EB4B-4199-B439-A39AE0159690 21 | ../.. 22 | 23 | IDESourceControlProjectURL 24 | https://github.com/lyokato/FBGlowLabel.git 25 | IDESourceControlProjectVersion 26 | 110 27 | IDESourceControlProjectWCCIdentifier 28 | 903FC0B5-EB4B-4199-B439-A39AE0159690 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 903FC0B5-EB4B-4199-B439-A39AE0159690 36 | IDESourceControlWCCName 37 | FBGlowLabel 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/Base.lproj/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 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/FBAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // FBAppDelegate.h 3 | // FBGlowLabelDemo 4 | // 5 | // Created by Lyo Kato on 2013/11/11. 6 | // Copyright (c) 2013年 OCTUDIO. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FBAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/FBAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // FBAppDelegate.m 3 | // FBGlowLabelDemo 4 | // 5 | // Created by Lyo Kato on 2013/11/11. 6 | // Copyright (c) 2013年 OCTUDIO. All rights reserved. 7 | // 8 | 9 | #import "FBAppDelegate.h" 10 | 11 | @implementation FBAppDelegate 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 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/FBGlowLabelDemo-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | jp.co.octudio.${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 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/FBGlowLabelDemo-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 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/FBViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FBViewController.h 3 | // FBGlowLabelDemo 4 | // 5 | // Created by Lyo Kato on 2013/11/11. 6 | // Copyright (c) 2013年 OCTUDIO. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FBViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/FBViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // FBViewController.m 3 | // FBGlowLabelDemo 4 | // 5 | // Created by Lyo Kato on 2013/11/11. 6 | // Copyright (c) 2013年 OCTUDIO. All rights reserved. 7 | // 8 | 9 | #import "FBViewController.h" 10 | #import 11 | 12 | #define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)(((rgbValue) & 0xFF0000) >> 16))/255.0 green:((float)(((rgbValue) & 0xFF00) >> 8))/255.0 blue:((float)((rgbValue) & 0xFF))/255.0 alpha:1.0] 13 | 14 | #define kInitialText @"Real Glow" 15 | 16 | @interface FBViewController () 17 | @property (nonatomic) FBGlowLabel *label; 18 | @property (nonatomic) UITextField *field; 19 | @end 20 | 21 | @implementation FBViewController 22 | 23 | - (void)viewDidLoad 24 | { 25 | [super viewDidLoad]; 26 | self.view.backgroundColor = UIColor.blackColor; 27 | [self setupLabel]; 28 | [self setupTextField]; 29 | } 30 | 31 | - (void)setupLabel 32 | { 33 | CGRect frame = CGRectMake(10, 100, 300, 100); 34 | FBGlowLabel *v = [[FBGlowLabel alloc] initWithFrame:frame]; 35 | v.text = kInitialText; 36 | v.textAlignment = NSTextAlignmentCenter; 37 | v.clipsToBounds = YES; 38 | v.backgroundColor = [UIColor clearColor]; 39 | v.font = [UIFont fontWithName:@"Helvetica-Bold" size:40]; 40 | v.alpha = 1.0; 41 | v.glowSize = 20; 42 | v.innerGlowSize = 4; 43 | v.textColor = UIColor.whiteColor; 44 | v.glowColor = UIColorFromRGB(0x00ffff); 45 | v.innerGlowColor = UIColorFromRGB(0x00ffff); 46 | self.label = v; 47 | [self.view addSubview:v]; 48 | } 49 | 50 | - (void)setupTextField 51 | { 52 | CGRect frame = CGRectMake(10, 20, 300, 50); 53 | UITextField *v = [[UITextField alloc] initWithFrame:frame]; 54 | v.delegate = self; 55 | v.textColor = UIColorFromRGB(0x000000); 56 | v.placeholder = @"INPUT HERE"; 57 | //v.text = kInitialText; 58 | v.returnKeyType = UIReturnKeyDone; 59 | v.font = [UIFont fontWithName:@"Helvetica-Bold" size:20]; 60 | v.backgroundColor = UIColor.whiteColor; 61 | v.textAlignment = NSTextAlignmentCenter; 62 | v.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter; 63 | self.field = v; 64 | [self.view addSubview:v]; 65 | } 66 | 67 | - (void)didReceiveMemoryWarning 68 | { 69 | [super didReceiveMemoryWarning]; 70 | // Dispose of any resources that can be recreated. 71 | } 72 | 73 | #pragma mark - UITextFieldDelegate 74 | 75 | - (void)textFieldDidEndEditing:(UITextField *)textField 76 | { 77 | 78 | } 79 | 80 | - (BOOL)textFieldShouldReturn:(UITextField *)textField 81 | { 82 | [self.field resignFirstResponder]; 83 | self.label.text = self.field.text; 84 | [self.label setNeedsDisplay]; 85 | return YES; 86 | } 87 | 88 | - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string 89 | { 90 | self.label.text = [self.field.text stringByReplacingCharactersInRange:range 91 | withString:string]; 92 | [self.label setNeedsDisplay]; 93 | return YES; 94 | } 95 | 96 | - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField 97 | { 98 | return YES; 99 | } 100 | 101 | @end 102 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/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" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/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 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FBGlowLabelDemo 4 | // 5 | // Created by Lyo Kato on 2013/11/11. 6 | // Copyright (c) 2013年 OCTUDIO. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "FBAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([FBAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemoTests/FBGlowLabelDemoTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | jp.co.octudio.${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 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemoTests/FBGlowLabelDemoTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // FBGlowLabelDemoTests.m 3 | // FBGlowLabelDemoTests 4 | // 5 | // Created by Lyo Kato on 2013/11/11. 6 | // Copyright (c) 2013年 OCTUDIO. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FBGlowLabelDemoTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation FBGlowLabelDemoTests 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 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/FBGlowLabelDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '6.0' 2 | pod 'FBGlowLabel', :path => '..' 3 | 4 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - FBGlowLabel (0.0.1) 3 | 4 | DEPENDENCIES: 5 | - FBGlowLabel (from `..`) 6 | 7 | EXTERNAL SOURCES: 8 | FBGlowLabel: 9 | :path: .. 10 | 11 | SPEC CHECKSUMS: 12 | FBGlowLabel: b37279b1363c200feedcf6bd6f9c61c55a29b91a 13 | 14 | COCOAPODS: 0.27.1 15 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/BuildHeaders/FBGlowLabel/FBGlowLabel.h: -------------------------------------------------------------------------------- 1 | ../../../../FBGlowLabel/Classes/FBGlowLabel.h -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Headers/FBGlowLabel/FBGlowLabel.h: -------------------------------------------------------------------------------- 1 | ../../../../FBGlowLabel/Classes/FBGlowLabel.h -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Local Podspecs/FBGlowLabel.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "FBGlowLabel" 3 | s.version = "0.0.1" 4 | s.summary = "adding UILabel glowing effect" 5 | s.description = <<-DESC 6 | This library support glowing effect on to UILabel class. 7 | Not only outer glow (shadow), but also inner glow. 8 | DESC 9 | s.homepage = "https://github.com/lyokato/FBGlowLabel" 10 | s.license = 'MIT' 11 | s.author = { "Lyo Kato" => "lyo.kato@gmail.com" } 12 | s.platform = :ios, '6.0' 13 | s.source = { :git => "https://github.com/lyokato/FBGlowLabel.git", :tag => "0.0.1" } 14 | s.source_files = 'FBGlowLabel/Classes/*.{h,m}' 15 | s.exclude_files = 'Classes/Exclude' 16 | # s.public_header_files = 'FBGLowLabel/Classes/*.h' 17 | # s.resource = "icon.png" 18 | # s.resources = "Resources/*.png" 19 | # s.preserve_paths = "FilesToSave", "MoreFilesToSave" 20 | # s.frameworks = 'SomeFramework', 'AnotherFramework' 21 | s.framework = 'QuartzCore' 22 | # s.library = 'iconv' 23 | # s.libraries = 'iconv', 'xml2' 24 | s.requires_arc = true 25 | # s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } 26 | # s.dependency 'JSONKit', '~> 1.4' 27 | end 28 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - FBGlowLabel (0.0.1) 3 | 4 | DEPENDENCIES: 5 | - FBGlowLabel (from `..`) 6 | 7 | EXTERNAL SOURCES: 8 | FBGlowLabel: 9 | :path: .. 10 | 11 | SPEC CHECKSUMS: 12 | FBGlowLabel: b37279b1363c200feedcf6bd6f9c61c55a29b91a 13 | 14 | COCOAPODS: 0.27.1 15 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-FBGlowLabel-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-FBGlowLabel.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/BuildHeaders" "${PODS_ROOT}/BuildHeaders/FBGlowLabel" "${PODS_ROOT}/Headers" "${PODS_ROOT}/Headers/FBGlowLabel" 4 | OTHER_LDFLAGS = -ObjC ${PODS_FBGLOWLABEL_OTHER_LDFLAGS} 5 | PODS_ROOT = ${SRCROOT} -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-FBGlowLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_FBGlowLabel : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_FBGlowLabel 5 | @end 6 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-FBGlowLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-FBGlowLabel.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_FBGLOWLABEL_OTHER_LDFLAGS = -framework QuartzCore -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## FBGlowLabel 5 | 6 | The MIT License 7 | 8 | Copyright (c) 2013 lyo.kato@gmail.com 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in 18 | all copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 26 | THE SOFTWARE. 27 | 28 | Generated by CocoaPods - http://cocoapods.org 29 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-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 | The MIT License 18 | 19 | Copyright (c) 2013 lyo.kato@gmail.com 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in 29 | all copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 37 | THE SOFTWARE. 38 | 39 | Title 40 | FBGlowLabel 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - http://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // FBGlowLabel 10 | #define COCOAPODS_POD_AVAILABLE_FBGlowLabel 11 | #define COCOAPODS_VERSION_MAJOR_FBGlowLabel 0 12 | #define COCOAPODS_VERSION_MINOR_FBGlowLabel 0 13 | #define COCOAPODS_VERSION_PATCH_FBGlowLabel 1 14 | 15 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 5 | > "$RESOURCES_TO_COPY" 6 | 7 | install_resource() 8 | { 9 | case $1 in 10 | *.storyboard) 11 | 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}" 12 | 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}" 13 | ;; 14 | *.xib) 15 | 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}" 16 | 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}" 17 | ;; 18 | *.framework) 19 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 21 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 22 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 23 | ;; 24 | *.xcdatamodel) 25 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 26 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 27 | ;; 28 | *.xcdatamodeld) 29 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 30 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 31 | ;; 32 | *.xcassets) 33 | ;; 34 | /*) 35 | echo "$1" 36 | echo "$1" >> "$RESOURCES_TO_COPY" 37 | ;; 38 | *) 39 | echo "${PODS_ROOT}/$1" 40 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 41 | ;; 42 | esac 43 | } 44 | 45 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 46 | if [[ "${ACTION}" == "install" ]]; then 47 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 48 | fi 49 | rm -f "$RESOURCES_TO_COPY" 50 | 51 | if [ `find . -name '*.xcassets' | wc -l` -ne 0 ] 52 | then 53 | DEVICE=`if [ "${TARGETED_DEVICE_FAMILY}" -eq 1 ]; then echo "iphone"; else echo "ipad"; fi` 54 | find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" --target-device "${DEVICE}" --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}" 55 | fi 56 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers" "${PODS_ROOT}/Headers/FBGlowLabel" 3 | OTHER_LDFLAGS = -ObjC -framework QuartzCore 4 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | archiveVersion 6 | 1 7 | classes 8 | 9 | objectVersion 10 | 46 11 | objects 12 | 13 | 0386BB745BBA4F65B125111E 14 | 15 | children 16 | 17 | 3680752DC50D4ED0BE23ADAD 18 | 80824B3E698F48A0BA652414 19 | FB93E522A51743EB9B51A230 20 | A2504A4CD355423A84063711 21 | 22 | isa 23 | PBXGroup 24 | name 25 | Support Files 26 | sourceTree 27 | SOURCE_ROOT 28 | 29 | 0AFD7EE4C2624F20ABD4D14E 30 | 31 | includeInIndex 32 | 1 33 | isa 34 | PBXFileReference 35 | lastKnownFileType 36 | sourcecode.c.objc 37 | path 38 | Pods-dummy.m 39 | sourceTree 40 | <group> 41 | 42 | 0BABC8B913C840D7A20ABB92 43 | 44 | children 45 | 46 | 62CD6118592240EFA60CCC9F 47 | 48 | isa 49 | PBXGroup 50 | name 51 | Frameworks 52 | sourceTree 53 | <group> 54 | 55 | 0F3D346DBED24F67A8F937BC 56 | 57 | buildActionMask 58 | 2147483647 59 | files 60 | 61 | 611F7E22885F494893688588 62 | 14FC936E963647A08F3CCD72 63 | 64 | isa 65 | PBXFrameworksBuildPhase 66 | runOnlyForDeploymentPostprocessing 67 | 0 68 | 69 | 10CBA98CD0924E24BF6EE0EF 70 | 71 | baseConfigurationReference 72 | 2E19EC3C97B0478C8C3C470C 73 | buildSettings 74 | 75 | ALWAYS_SEARCH_USER_PATHS 76 | NO 77 | ARCHS 78 | $(ARCHS_STANDARD_INCLUDING_64_BIT) 79 | COPY_PHASE_STRIP 80 | NO 81 | DSTROOT 82 | /tmp/xcodeproj.dst 83 | GCC_C_LANGUAGE_STANDARD 84 | gnu99 85 | GCC_DYNAMIC_NO_PIC 86 | NO 87 | GCC_OPTIMIZATION_LEVEL 88 | 0 89 | GCC_PRECOMPILE_PREFIX_HEADER 90 | YES 91 | GCC_PREPROCESSOR_DEFINITIONS 92 | 93 | DEBUG=1 94 | $(inherited) 95 | 96 | GCC_SYMBOLS_PRIVATE_EXTERN 97 | NO 98 | GCC_VERSION 99 | com.apple.compilers.llvm.clang.1_0 100 | INSTALL_PATH 101 | $(BUILT_PRODUCTS_DIR) 102 | IPHONEOS_DEPLOYMENT_TARGET 103 | 6.0 104 | OTHER_LDFLAGS 105 | 106 | PRODUCT_NAME 107 | $(TARGET_NAME) 108 | PUBLIC_HEADERS_FOLDER_PATH 109 | $(TARGET_NAME) 110 | SDKROOT 111 | iphoneos 112 | SKIP_INSTALL 113 | YES 114 | 115 | isa 116 | XCBuildConfiguration 117 | name 118 | Debug 119 | 120 | 14FC936E963647A08F3CCD72 121 | 122 | fileRef 123 | F835D91A9D5B48E6A3483CA5 124 | isa 125 | PBXBuildFile 126 | 127 | 187016DB76A74662A3630316 128 | 129 | containerPortal 130 | 8EBC852544D14C9A804BB4FC 131 | isa 132 | PBXContainerItemProxy 133 | proxyType 134 | 1 135 | remoteGlobalIDString 136 | B336B2A8280545AE9BE5D5E3 137 | remoteInfo 138 | Pods-FBGlowLabel 139 | 140 | 29EA9B4E67244D9D9FB26478 141 | 142 | children 143 | 144 | DC3C5A5B722B436E86F19A8F 145 | 146 | isa 147 | PBXGroup 148 | name 149 | Targets Support Files 150 | sourceTree 151 | <group> 152 | 153 | 2E19EC3C97B0478C8C3C470C 154 | 155 | includeInIndex 156 | 1 157 | isa 158 | PBXFileReference 159 | lastKnownFileType 160 | text.xcconfig 161 | path 162 | Pods.xcconfig 163 | sourceTree 164 | <group> 165 | 166 | 2F20A3E3E8FD4162992E2566 167 | 168 | buildActionMask 169 | 2147483647 170 | files 171 | 172 | 546C89F245BB492BA2E154C9 173 | D645FBBAF1354196B9FDABC6 174 | 175 | isa 176 | PBXSourcesBuildPhase 177 | runOnlyForDeploymentPostprocessing 178 | 0 179 | 180 | 3680752DC50D4ED0BE23ADAD 181 | 182 | includeInIndex 183 | 1 184 | isa 185 | PBXFileReference 186 | lastKnownFileType 187 | text.xcconfig 188 | path 189 | Pods-FBGlowLabel.xcconfig 190 | sourceTree 191 | <group> 192 | 193 | 3A6457C359D148EEA8A7902E 194 | 195 | explicitFileType 196 | archive.ar 197 | includeInIndex 198 | 0 199 | isa 200 | PBXFileReference 201 | path 202 | libPods.a 203 | sourceTree 204 | BUILT_PRODUCTS_DIR 205 | 206 | 483417ED97844495B546826C 207 | 208 | baseConfigurationReference 209 | 80824B3E698F48A0BA652414 210 | buildSettings 211 | 212 | ALWAYS_SEARCH_USER_PATHS 213 | NO 214 | ARCHS 215 | $(ARCHS_STANDARD_INCLUDING_64_BIT) 216 | COPY_PHASE_STRIP 217 | YES 218 | DSTROOT 219 | /tmp/xcodeproj.dst 220 | GCC_C_LANGUAGE_STANDARD 221 | gnu99 222 | GCC_PRECOMPILE_PREFIX_HEADER 223 | YES 224 | GCC_PREFIX_HEADER 225 | Pods-FBGlowLabel-prefix.pch 226 | GCC_VERSION 227 | com.apple.compilers.llvm.clang.1_0 228 | INSTALL_PATH 229 | $(BUILT_PRODUCTS_DIR) 230 | IPHONEOS_DEPLOYMENT_TARGET 231 | 6.0 232 | OTHER_CFLAGS 233 | 234 | -DNS_BLOCK_ASSERTIONS=1 235 | $(inherited) 236 | 237 | OTHER_CPLUSPLUSFLAGS 238 | 239 | -DNS_BLOCK_ASSERTIONS=1 240 | $(inherited) 241 | 242 | OTHER_LDFLAGS 243 | 244 | PRODUCT_NAME 245 | $(TARGET_NAME) 246 | PUBLIC_HEADERS_FOLDER_PATH 247 | $(TARGET_NAME) 248 | SDKROOT 249 | iphoneos 250 | SKIP_INSTALL 251 | YES 252 | VALIDATE_PRODUCT 253 | YES 254 | 255 | isa 256 | XCBuildConfiguration 257 | name 258 | Release 259 | 260 | 4FCD54FBBBAF434483EBA8E2 261 | 262 | baseConfigurationReference 263 | 80824B3E698F48A0BA652414 264 | buildSettings 265 | 266 | ALWAYS_SEARCH_USER_PATHS 267 | NO 268 | ARCHS 269 | $(ARCHS_STANDARD_INCLUDING_64_BIT) 270 | COPY_PHASE_STRIP 271 | NO 272 | DSTROOT 273 | /tmp/xcodeproj.dst 274 | GCC_C_LANGUAGE_STANDARD 275 | gnu99 276 | GCC_DYNAMIC_NO_PIC 277 | NO 278 | GCC_OPTIMIZATION_LEVEL 279 | 0 280 | GCC_PRECOMPILE_PREFIX_HEADER 281 | YES 282 | GCC_PREFIX_HEADER 283 | Pods-FBGlowLabel-prefix.pch 284 | GCC_PREPROCESSOR_DEFINITIONS 285 | 286 | DEBUG=1 287 | $(inherited) 288 | 289 | GCC_SYMBOLS_PRIVATE_EXTERN 290 | NO 291 | GCC_VERSION 292 | com.apple.compilers.llvm.clang.1_0 293 | INSTALL_PATH 294 | $(BUILT_PRODUCTS_DIR) 295 | IPHONEOS_DEPLOYMENT_TARGET 296 | 6.0 297 | OTHER_LDFLAGS 298 | 299 | PRODUCT_NAME 300 | $(TARGET_NAME) 301 | PUBLIC_HEADERS_FOLDER_PATH 302 | $(TARGET_NAME) 303 | SDKROOT 304 | iphoneos 305 | SKIP_INSTALL 306 | YES 307 | 308 | isa 309 | XCBuildConfiguration 310 | name 311 | Debug 312 | 313 | 5458547906D64411A5CC9B9F 314 | 315 | fileRef 316 | D95CCB49F3FB46A492B3A31D 317 | isa 318 | PBXBuildFile 319 | 320 | 546C89F245BB492BA2E154C9 321 | 322 | fileRef 323 | C08854AF820D4DADA62CFC4D 324 | isa 325 | PBXBuildFile 326 | settings 327 | 328 | COMPILER_FLAGS 329 | -fobjc-arc 330 | 331 | 332 | 5870A4B4EC6B484CBA21EEE7 333 | 334 | children 335 | 336 | 6C238D76C89A49C28D6D7D79 337 | CE3F4C52DC874302AC54DE40 338 | 0BABC8B913C840D7A20ABB92 339 | 62B2198FD57C4BA7B0E6C447 340 | 29EA9B4E67244D9D9FB26478 341 | 342 | isa 343 | PBXGroup 344 | sourceTree 345 | <group> 346 | 347 | 5A9C49AB65A24A0EB155C3C6 348 | 349 | includeInIndex 350 | 1 351 | isa 352 | PBXFileReference 353 | lastKnownFileType 354 | text 355 | path 356 | Pods-acknowledgements.markdown 357 | sourceTree 358 | <group> 359 | 360 | 611F7E22885F494893688588 361 | 362 | fileRef 363 | 9C1D5A0814794600B45CF953 364 | isa 365 | PBXBuildFile 366 | 367 | 62B2198FD57C4BA7B0E6C447 368 | 369 | children 370 | 371 | 3A6457C359D148EEA8A7902E 372 | F835D91A9D5B48E6A3483CA5 373 | 374 | isa 375 | PBXGroup 376 | name 377 | Products 378 | sourceTree 379 | <group> 380 | 381 | 62CD6118592240EFA60CCC9F 382 | 383 | children 384 | 385 | 9C1D5A0814794600B45CF953 386 | D95CCB49F3FB46A492B3A31D 387 | 388 | isa 389 | PBXGroup 390 | name 391 | iOS 392 | sourceTree 393 | <group> 394 | 395 | 66EADD647176493894F02A3F 396 | 397 | fileRef 398 | 0AFD7EE4C2624F20ABD4D14E 399 | isa 400 | PBXBuildFile 401 | 402 | 6AF2220363A74BC9A9231EB4 403 | 404 | includeInIndex 405 | 1 406 | isa 407 | PBXFileReference 408 | lastKnownFileType 409 | sourcecode.c.h 410 | path 411 | Pods-environment.h 412 | sourceTree 413 | <group> 414 | 415 | 6C238D76C89A49C28D6D7D79 416 | 417 | includeInIndex 418 | 1 419 | isa 420 | PBXFileReference 421 | lastKnownFileType 422 | text 423 | name 424 | Podfile 425 | path 426 | ../Podfile 427 | sourceTree 428 | SOURCE_ROOT 429 | xcLanguageSpecificationIdentifier 430 | xcode.lang.ruby 431 | 432 | 79960A85F653464BAD0836A2 433 | 434 | buildSettings 435 | 436 | ALWAYS_SEARCH_USER_PATHS 437 | NO 438 | CLANG_CXX_LANGUAGE_STANDARD 439 | gnu++0x 440 | CLANG_CXX_LIBRARY 441 | libc++ 442 | CLANG_ENABLE_MODULES 443 | YES 444 | CLANG_ENABLE_OBJC_ARC 445 | NO 446 | CLANG_WARN_BOOL_CONVERSION 447 | YES 448 | CLANG_WARN_CONSTANT_CONVERSION 449 | YES 450 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 451 | YES_ERROR 452 | CLANG_WARN_EMPTY_BODY 453 | YES 454 | CLANG_WARN_ENUM_CONVERSION 455 | YES 456 | CLANG_WARN_INT_CONVERSION 457 | YES 458 | CLANG_WARN_OBJC_ROOT_CLASS 459 | YES_ERROR 460 | COPY_PHASE_STRIP 461 | NO 462 | ENABLE_NS_ASSERTIONS 463 | NO 464 | GCC_C_LANGUAGE_STANDARD 465 | gnu99 466 | GCC_WARN_64_TO_32_BIT_CONVERSION 467 | YES 468 | GCC_WARN_ABOUT_RETURN_TYPE 469 | YES_ERROR 470 | GCC_WARN_UNDECLARED_SELECTOR 471 | YES 472 | GCC_WARN_UNINITIALIZED_AUTOS 473 | YES 474 | GCC_WARN_UNUSED_FUNCTION 475 | YES 476 | GCC_WARN_UNUSED_VARIABLE 477 | YES 478 | IPHONEOS_DEPLOYMENT_TARGET 479 | 6.0 480 | STRIP_INSTALLED_PRODUCT 481 | NO 482 | VALIDATE_PRODUCT 483 | YES 484 | 485 | isa 486 | XCBuildConfiguration 487 | name 488 | Release 489 | 490 | 7A6A72C478F04199ADF91A76 491 | 492 | includeInIndex 493 | 1 494 | isa 495 | PBXFileReference 496 | lastKnownFileType 497 | sourcecode.c.h 498 | name 499 | FBGlowLabel.h 500 | path 501 | FBGlowLabel/Classes/FBGlowLabel.h 502 | sourceTree 503 | <group> 504 | 505 | 80824B3E698F48A0BA652414 506 | 507 | includeInIndex 508 | 1 509 | isa 510 | PBXFileReference 511 | lastKnownFileType 512 | text.xcconfig 513 | path 514 | Pods-FBGlowLabel-Private.xcconfig 515 | sourceTree 516 | <group> 517 | 518 | 81EBADE114654A75B2CC4F81 519 | 520 | buildConfigurations 521 | 522 | 10CBA98CD0924E24BF6EE0EF 523 | E673BBEE02784C65A2F11263 524 | 525 | defaultConfigurationIsVisible 526 | 0 527 | defaultConfigurationName 528 | Release 529 | isa 530 | XCConfigurationList 531 | 532 | 8251FF6D4F3F417D8DBD1F1A 533 | 534 | includeInIndex 535 | 1 536 | isa 537 | PBXFileReference 538 | lastKnownFileType 539 | text.plist.xml 540 | path 541 | Pods-acknowledgements.plist 542 | sourceTree 543 | <group> 544 | 545 | 8EBC852544D14C9A804BB4FC 546 | 547 | attributes 548 | 549 | LastUpgradeCheck 550 | 0500 551 | 552 | buildConfigurationList 553 | 99B344D952F2437FAE8C5586 554 | compatibilityVersion 555 | Xcode 3.2 556 | developmentRegion 557 | English 558 | hasScannedForEncodings 559 | 0 560 | isa 561 | PBXProject 562 | knownRegions 563 | 564 | en 565 | 566 | mainGroup 567 | 5870A4B4EC6B484CBA21EEE7 568 | productRefGroup 569 | 62B2198FD57C4BA7B0E6C447 570 | projectDirPath 571 | 572 | projectReferences 573 | 574 | projectRoot 575 | 576 | targets 577 | 578 | C7E9DDCC14CB4A16B3D34A71 579 | B336B2A8280545AE9BE5D5E3 580 | 581 | 582 | 9000C6795AEA40E7BF055A98 583 | 584 | buildActionMask 585 | 2147483647 586 | files 587 | 588 | F929C2E2E35B4C14B6F7633C 589 | 5458547906D64411A5CC9B9F 590 | 591 | isa 592 | PBXFrameworksBuildPhase 593 | runOnlyForDeploymentPostprocessing 594 | 0 595 | 596 | 958997544BC6430BB7BCD2DB 597 | 598 | includeInIndex 599 | 1 600 | isa 601 | PBXFileReference 602 | lastKnownFileType 603 | text.script.sh 604 | path 605 | Pods-resources.sh 606 | sourceTree 607 | <group> 608 | 609 | 9595A40569ED434C95F8A350 610 | 611 | buildActionMask 612 | 2147483647 613 | files 614 | 615 | 66EADD647176493894F02A3F 616 | 617 | isa 618 | PBXSourcesBuildPhase 619 | runOnlyForDeploymentPostprocessing 620 | 0 621 | 622 | 99B344D952F2437FAE8C5586 623 | 624 | buildConfigurations 625 | 626 | B6DC488B1A104A759A9E3487 627 | 79960A85F653464BAD0836A2 628 | 629 | defaultConfigurationIsVisible 630 | 0 631 | defaultConfigurationName 632 | Release 633 | isa 634 | XCConfigurationList 635 | 636 | 9C1D5A0814794600B45CF953 637 | 638 | isa 639 | PBXFileReference 640 | lastKnownFileType 641 | wrapper.framework 642 | name 643 | Foundation.framework 644 | path 645 | Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/Foundation.framework 646 | sourceTree 647 | DEVELOPER_DIR 648 | 649 | A2504A4CD355423A84063711 650 | 651 | includeInIndex 652 | 1 653 | isa 654 | PBXFileReference 655 | lastKnownFileType 656 | sourcecode.c.h 657 | path 658 | Pods-FBGlowLabel-prefix.pch 659 | sourceTree 660 | <group> 661 | 662 | A4DC24A147A2480C9028DE22 663 | 664 | buildConfigurations 665 | 666 | 4FCD54FBBBAF434483EBA8E2 667 | 483417ED97844495B546826C 668 | 669 | defaultConfigurationIsVisible 670 | 0 671 | defaultConfigurationName 672 | Release 673 | isa 674 | XCConfigurationList 675 | 676 | B336B2A8280545AE9BE5D5E3 677 | 678 | buildConfigurationList 679 | A4DC24A147A2480C9028DE22 680 | buildPhases 681 | 682 | 2F20A3E3E8FD4162992E2566 683 | 9000C6795AEA40E7BF055A98 684 | F24D45B231CE43C89EF9063E 685 | 686 | buildRules 687 | 688 | dependencies 689 | 690 | isa 691 | PBXNativeTarget 692 | name 693 | Pods-FBGlowLabel 694 | productName 695 | Pods-FBGlowLabel 696 | productReference 697 | F835D91A9D5B48E6A3483CA5 698 | productType 699 | com.apple.product-type.library.static 700 | 701 | B6DC488B1A104A759A9E3487 702 | 703 | buildSettings 704 | 705 | ALWAYS_SEARCH_USER_PATHS 706 | NO 707 | CLANG_CXX_LANGUAGE_STANDARD 708 | gnu++0x 709 | CLANG_CXX_LIBRARY 710 | libc++ 711 | CLANG_ENABLE_MODULES 712 | YES 713 | CLANG_ENABLE_OBJC_ARC 714 | NO 715 | CLANG_WARN_BOOL_CONVERSION 716 | YES 717 | CLANG_WARN_CONSTANT_CONVERSION 718 | YES 719 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 720 | YES_ERROR 721 | CLANG_WARN_EMPTY_BODY 722 | YES 723 | CLANG_WARN_ENUM_CONVERSION 724 | YES 725 | CLANG_WARN_INT_CONVERSION 726 | YES 727 | CLANG_WARN_OBJC_ROOT_CLASS 728 | YES_ERROR 729 | COPY_PHASE_STRIP 730 | YES 731 | GCC_C_LANGUAGE_STANDARD 732 | gnu99 733 | GCC_DYNAMIC_NO_PIC 734 | NO 735 | GCC_OPTIMIZATION_LEVEL 736 | 0 737 | GCC_PREPROCESSOR_DEFINITIONS 738 | 739 | DEBUG=1 740 | $(inherited) 741 | 742 | GCC_SYMBOLS_PRIVATE_EXTERN 743 | NO 744 | GCC_WARN_64_TO_32_BIT_CONVERSION 745 | YES 746 | GCC_WARN_ABOUT_RETURN_TYPE 747 | YES_ERROR 748 | GCC_WARN_UNDECLARED_SELECTOR 749 | YES 750 | GCC_WARN_UNINITIALIZED_AUTOS 751 | YES 752 | GCC_WARN_UNUSED_FUNCTION 753 | YES 754 | GCC_WARN_UNUSED_VARIABLE 755 | YES 756 | IPHONEOS_DEPLOYMENT_TARGET 757 | 6.0 758 | ONLY_ACTIVE_ARCH 759 | YES 760 | STRIP_INSTALLED_PRODUCT 761 | NO 762 | 763 | isa 764 | XCBuildConfiguration 765 | name 766 | Debug 767 | 768 | BB3F6299D3B0468D925A8F90 769 | 770 | children 771 | 772 | 7A6A72C478F04199ADF91A76 773 | C08854AF820D4DADA62CFC4D 774 | 0386BB745BBA4F65B125111E 775 | 776 | isa 777 | PBXGroup 778 | name 779 | FBGlowLabel 780 | path 781 | ../.. 782 | sourceTree 783 | <group> 784 | 785 | C08854AF820D4DADA62CFC4D 786 | 787 | includeInIndex 788 | 1 789 | isa 790 | PBXFileReference 791 | lastKnownFileType 792 | sourcecode.c.objc 793 | name 794 | FBGlowLabel.m 795 | path 796 | FBGlowLabel/Classes/FBGlowLabel.m 797 | sourceTree 798 | <group> 799 | 800 | C7E9DDCC14CB4A16B3D34A71 801 | 802 | buildConfigurationList 803 | 81EBADE114654A75B2CC4F81 804 | buildPhases 805 | 806 | 9595A40569ED434C95F8A350 807 | 0F3D346DBED24F67A8F937BC 808 | 809 | buildRules 810 | 811 | dependencies 812 | 813 | CEC3A03CC8F54AA296E8B3EA 814 | 815 | isa 816 | PBXNativeTarget 817 | name 818 | Pods 819 | productName 820 | Pods 821 | productReference 822 | 3A6457C359D148EEA8A7902E 823 | productType 824 | com.apple.product-type.library.static 825 | 826 | CC03BADDF90B49BBA1521DE9 827 | 828 | fileRef 829 | 7A6A72C478F04199ADF91A76 830 | isa 831 | PBXBuildFile 832 | 833 | CE3F4C52DC874302AC54DE40 834 | 835 | children 836 | 837 | BB3F6299D3B0468D925A8F90 838 | 839 | isa 840 | PBXGroup 841 | name 842 | Development Pods 843 | sourceTree 844 | <group> 845 | 846 | CEC3A03CC8F54AA296E8B3EA 847 | 848 | isa 849 | PBXTargetDependency 850 | target 851 | B336B2A8280545AE9BE5D5E3 852 | targetProxy 853 | 187016DB76A74662A3630316 854 | 855 | D645FBBAF1354196B9FDABC6 856 | 857 | fileRef 858 | FB93E522A51743EB9B51A230 859 | isa 860 | PBXBuildFile 861 | 862 | D95CCB49F3FB46A492B3A31D 863 | 864 | isa 865 | PBXFileReference 866 | lastKnownFileType 867 | wrapper.framework 868 | name 869 | QuartzCore.framework 870 | path 871 | Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/QuartzCore.framework 872 | sourceTree 873 | DEVELOPER_DIR 874 | 875 | DC3C5A5B722B436E86F19A8F 876 | 877 | children 878 | 879 | 2E19EC3C97B0478C8C3C470C 880 | 5A9C49AB65A24A0EB155C3C6 881 | 8251FF6D4F3F417D8DBD1F1A 882 | 0AFD7EE4C2624F20ABD4D14E 883 | 6AF2220363A74BC9A9231EB4 884 | 958997544BC6430BB7BCD2DB 885 | 886 | isa 887 | PBXGroup 888 | name 889 | Pods 890 | sourceTree 891 | <group> 892 | 893 | E673BBEE02784C65A2F11263 894 | 895 | baseConfigurationReference 896 | 2E19EC3C97B0478C8C3C470C 897 | buildSettings 898 | 899 | ALWAYS_SEARCH_USER_PATHS 900 | NO 901 | ARCHS 902 | $(ARCHS_STANDARD_INCLUDING_64_BIT) 903 | COPY_PHASE_STRIP 904 | YES 905 | DSTROOT 906 | /tmp/xcodeproj.dst 907 | GCC_C_LANGUAGE_STANDARD 908 | gnu99 909 | GCC_PRECOMPILE_PREFIX_HEADER 910 | YES 911 | GCC_VERSION 912 | com.apple.compilers.llvm.clang.1_0 913 | INSTALL_PATH 914 | $(BUILT_PRODUCTS_DIR) 915 | IPHONEOS_DEPLOYMENT_TARGET 916 | 6.0 917 | OTHER_CFLAGS 918 | 919 | -DNS_BLOCK_ASSERTIONS=1 920 | $(inherited) 921 | 922 | OTHER_CPLUSPLUSFLAGS 923 | 924 | -DNS_BLOCK_ASSERTIONS=1 925 | $(inherited) 926 | 927 | OTHER_LDFLAGS 928 | 929 | PRODUCT_NAME 930 | $(TARGET_NAME) 931 | PUBLIC_HEADERS_FOLDER_PATH 932 | $(TARGET_NAME) 933 | SDKROOT 934 | iphoneos 935 | SKIP_INSTALL 936 | YES 937 | VALIDATE_PRODUCT 938 | YES 939 | 940 | isa 941 | XCBuildConfiguration 942 | name 943 | Release 944 | 945 | F24D45B231CE43C89EF9063E 946 | 947 | buildActionMask 948 | 2147483647 949 | files 950 | 951 | CC03BADDF90B49BBA1521DE9 952 | 953 | isa 954 | PBXHeadersBuildPhase 955 | runOnlyForDeploymentPostprocessing 956 | 0 957 | 958 | F835D91A9D5B48E6A3483CA5 959 | 960 | explicitFileType 961 | archive.ar 962 | includeInIndex 963 | 0 964 | isa 965 | PBXFileReference 966 | path 967 | libPods-FBGlowLabel.a 968 | sourceTree 969 | BUILT_PRODUCTS_DIR 970 | 971 | F929C2E2E35B4C14B6F7633C 972 | 973 | fileRef 974 | 9C1D5A0814794600B45CF953 975 | isa 976 | PBXBuildFile 977 | 978 | FB93E522A51743EB9B51A230 979 | 980 | includeInIndex 981 | 1 982 | isa 983 | PBXFileReference 984 | lastKnownFileType 985 | sourcecode.c.objc 986 | path 987 | Pods-FBGlowLabel-dummy.m 988 | sourceTree 989 | <group> 990 | 991 | 992 | rootObject 993 | 8EBC852544D14C9A804BB4FC 994 | 995 | 996 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods.xcodeproj/xcuserdata/lyokato.xcuserdatad/xcschemes/Pods-FBGlowLabel.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods.xcodeproj/xcuserdata/lyokato.xcuserdatad/xcschemes/Pods.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /FBGlowLabelDemo/Pods/Pods.xcodeproj/xcuserdata/lyokato.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Pods-FBGlowLabel.xcscheme 8 | 9 | isShown 10 | 11 | 12 | Pods.xcscheme 13 | 14 | isShown 15 | 16 | 17 | 18 | SuppressBuildableAutocreation 19 | 20 | B336B2A8280545AE9BE5D5E3 21 | 22 | primary 23 | 24 | 25 | C7E9DDCC14CB4A16B3D34A71 26 | 27 | primary 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2013 lyo.kato@gmail.com 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FBGlowLabel 2 | 3 | This library allows you to provide labels with glowing effect easily. 4 | 5 | There are some other tutorials or libraries to support glowing effect. But most of them support only *outer glow* simply using *shadow* features of CoreGraphics. Sometime people may feel it's cheap. To make it not cheap, the most important essence is *inner glow* 6 | 7 | See following images, these two use only outer glow. 8 | 9 | ![Blue](http://static.squarespace.com/static/51c2c539e4b032aad7050f2e/t/52821cc3e4b03c032e6c10e8/1384258756906/blue.png?format=750w "Blue") 10 | ![White](http://static.squarespace.com/static/51c2c539e4b032aad7050f2e/t/52821cd1e4b05645e63790aa/1384258771249/white.png?format=750w "White") 11 | 12 | These are not so bad, but somehow cheap. Then, see following image which is with inner glow. 13 | 14 | ![InnerGlow](http://static.squarespace.com/static/51c2c539e4b032aad7050f2e/t/52821ce0e4b03c032e6c1113/1384258840734/glow.png?format=750w "InnerGlowExample") 15 | 16 | Perfect! 17 | 18 | ## SETTING UP 19 | 20 | If you use CocoaPods, add following line into your Podfile 21 | 22 | ``` 23 | pod 'FBGlowLabel', :git => 'https://github.com/lyokato/FBGlowLabel.git' 24 | ``` 25 | 26 | or directly git clone or download from this page. 27 | 28 | ## IMPLEMENTATION 29 | 30 | Most of the usage is same as UILabel. And you can set just 4 more properties. too simple. 31 | 32 | - glowColor 33 | - glowSize 34 | - innerGlowColor 35 | - innerGlowSize 36 | 37 | ``` 38 | #import 39 | 40 | - (void)setupLabel 41 | { 42 | CGRect frame = CGRectMake(10, 100, 300, 100); 43 | FBGlowLabel *v = [[FBGlowLabel alloc] initWithFrame:frame]; 44 | v.text = kInitialText; 45 | v.textAlignment = NSTextAlignmentCenter; 46 | v.clipsToBounds = YES; 47 | v.backgroundColor = [UIColor clearColor]; 48 | v.font = [UIFont fontWithName:@"Helvetica-Bold" size:40]; 49 | v.alpha = 1.0; 50 | v.textColor = UIColor.whiteColor; 51 | 52 | v.glowSize = 20; 53 | v.glowColor = UIColor.greenColor; 54 | 55 | v.innerGlowSize = 4; 56 | v.innerGlowColor = UIColor.greenColor; 57 | 58 | self.label = v; 59 | [self.view addSubview:v]; 60 | } 61 | ``` 62 | 63 | ## SEE ALSO 64 | 65 | If you want more digital styled text, see 66 | [FBDigitalFont](http://github.com/lyokato/fbdigitalfont). 67 | 68 | FBDigitalFont supports some kinds of digital styled fonts. 69 | 70 | ![LCDFont](http://static.squarespace.com/static/51c2c539e4b032aad7050f2e/t/5294a0aae4b0f601b40f61a0/1385472171287/FBFontLCD.png?format=1500w "LCDFont") 71 | 72 | 73 | ## FOR MORE DETAIL 74 | 75 | This repository includes demo project, so you can dig into it for more detail. 76 | 77 | --------------------------------------------------------------------------------