├── Sample Project
├── TrackingAndCharacterSpacing
│ ├── en.lproj
│ │ └── InfoPlist.strings
│ ├── DVSViewController.h
│ ├── DVSAppDelegate.h
│ ├── main.m
│ ├── TrackingAndCharacterSpacing-Prefix.pch
│ ├── Images.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ └── Contents.json
│ │ └── LaunchImage.launchimage
│ │ │ └── Contents.json
│ ├── TrackingAndCharacterSpacing-Info.plist
│ ├── DVSAppDelegate.m
│ └── DVSViewController.m
├── TrackingAndCharacterSpacingTests
│ ├── en.lproj
│ │ └── InfoPlist.strings
│ ├── TrackingAndCharacterSpacingTests-Info.plist
│ └── TrackingAndCharacterSpacingTests.m
└── TrackingAndCharacterSpacing.xcodeproj
│ ├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ │ └── bryanjclark.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
│ ├── xcuserdata
│ └── bryanjclark.xcuserdatad
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ └── TrackingAndCharacterSpacing.xcscheme
│ └── project.pbxproj
├── NSAttributedString+DVSTracking.h
├── NSAttributedString+DVSTracking.m
├── LICENSE
└── README.md
/Sample Project/TrackingAndCharacterSpacing/en.lproj/InfoPlist.strings:
--------------------------------------------------------------------------------
1 | /* Localized versions of Info.plist keys */
2 |
3 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacingTests/en.lproj/InfoPlist.strings:
--------------------------------------------------------------------------------
1 | /* Localized versions of Info.plist keys */
2 |
3 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing.xcodeproj/project.xcworkspace/xcuserdata/bryanjclark.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bryanjclark/devsign-trackingAndCharacterSpacing/HEAD/Sample Project/TrackingAndCharacterSpacing.xcodeproj/project.xcworkspace/xcuserdata/bryanjclark.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/DVSViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // DVSViewController.h
3 | // TrackingAndCharacterSpacing
4 | //
5 | // Created by Bryan Clark on 8/21/14.
6 | // Copyright (c) 2014 Starbucks. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface DVSViewController : UIViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/DVSAppDelegate.h:
--------------------------------------------------------------------------------
1 | //
2 | // DVSAppDelegate.h
3 | // TrackingAndCharacterSpacing
4 | //
5 | // Created by Bryan Clark on 8/21/14.
6 | // Copyright (c) 2014 Starbucks. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface DVSAppDelegate : UIResponder
12 |
13 | @property (strong, nonatomic) UIWindow *window;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // TrackingAndCharacterSpacing
4 | //
5 | // Created by Bryan Clark on 8/21/14.
6 | // Copyright (c) 2014 Starbucks. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | #import "DVSAppDelegate.h"
12 |
13 | int main(int argc, char * argv[])
14 | {
15 | @autoreleasepool {
16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([DVSAppDelegate class]));
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/TrackingAndCharacterSpacing-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_3_0
10 | #warning "This project uses features only available in iOS SDK 3.0 and later."
11 | #endif
12 |
13 | #ifdef __OBJC__
14 | #import
15 | #import
16 | #endif
17 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/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 | }
--------------------------------------------------------------------------------
/NSAttributedString+DVSTracking.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSAttributedString+DVSTracking.h
3 | // TrackingAndCharacterSpacing
4 | //
5 | // Created by Bryan Clark on 8/21/14.
6 | // Copyright (c) 2014 Starbucks. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface NSAttributedString (DVSTracking)
12 | + (instancetype) dvs_attributedStringWithString:(NSString *)string
13 | tracking:(CGFloat)tracking
14 | font:(UIFont *)font;
15 | @end
16 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/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 | }
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing.xcodeproj/xcuserdata/bryanjclark.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | TrackingAndCharacterSpacing.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 53E70AF919A6F7CC00D07441
16 |
17 | primary
18 |
19 |
20 | 53E70B1419A6F7CD00D07441
21 |
22 | primary
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacingTests/TrackingAndCharacterSpacingTests-Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | ${EXECUTABLE_NAME}
9 | CFBundleIdentifier
10 | co.devsign.${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 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacingTests/TrackingAndCharacterSpacingTests.m:
--------------------------------------------------------------------------------
1 | //
2 | // TrackingAndCharacterSpacingTests.m
3 | // TrackingAndCharacterSpacingTests
4 | //
5 | // Created by Bryan Clark on 8/21/14.
6 | // Copyright (c) 2014 Starbucks. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface TrackingAndCharacterSpacingTests : XCTestCase
12 |
13 | @end
14 |
15 | @implementation TrackingAndCharacterSpacingTests
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 |
--------------------------------------------------------------------------------
/NSAttributedString+DVSTracking.m:
--------------------------------------------------------------------------------
1 | //
2 | // NSAttributedString+DVSTracking.m
3 | // TrackingAndCharacterSpacing
4 | //
5 | // Created by Bryan Clark on 8/21/14.
6 | // Copyright (c) 2014 Starbucks. All rights reserved.
7 | //
8 |
9 | #import "NSAttributedString+DVSTracking.h"
10 |
11 | @implementation NSAttributedString (DVSTracking)
12 |
13 | + (instancetype) dvs_attributedStringWithString:(NSString *)string
14 | tracking:(CGFloat)tracking
15 | font:(UIFont *)font
16 | {
17 | CGFloat fontSize = font.pointSize;
18 | CGFloat characterSpacing = tracking * fontSize / 1000;
19 |
20 | NSDictionary *attributes = @{NSFontAttributeName: font,
21 | NSKernAttributeName: [NSNumber numberWithFloat:characterSpacing]};
22 |
23 | return [[NSAttributedString alloc] initWithString:string attributes:attributes];
24 | }
25 |
26 | @end
27 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Bryan Clark
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 all
13 | 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 THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/TrackingAndCharacterSpacing-Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | ${PRODUCT_NAME}
9 | CFBundleExecutable
10 | ${EXECUTABLE_NAME}
11 | CFBundleIdentifier
12 | co.devsign.${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 | UIRequiredDeviceCapabilities
28 |
29 | armv7
30 |
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/DVSAppDelegate.m:
--------------------------------------------------------------------------------
1 | //
2 | // DVSAppDelegate.m
3 | // TrackingAndCharacterSpacing
4 | //
5 | // Created by Bryan Clark on 8/21/14.
6 | // Copyright (c) 2014 Starbucks. All rights reserved.
7 | //
8 |
9 | #import "DVSAppDelegate.h"
10 |
11 | #import "DVSViewController.h"
12 |
13 | @implementation DVSAppDelegate
14 |
15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
16 | {
17 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
18 | // Override point for customization after application launch.
19 | self.window.backgroundColor = [UIColor whiteColor];
20 | self.window.rootViewController = [DVSViewController new];
21 | [self.window makeKeyAndVisible];
22 | return YES;
23 | }
24 |
25 | - (void)applicationWillResignActive:(UIApplication *)application
26 | {
27 | // 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.
28 | // 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.
29 | }
30 |
31 | - (void)applicationDidEnterBackground:(UIApplication *)application
32 | {
33 | // 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.
34 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
35 | }
36 |
37 | - (void)applicationWillEnterForeground:(UIApplication *)application
38 | {
39 | // 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.
40 | }
41 |
42 | - (void)applicationDidBecomeActive:(UIApplication *)application
43 | {
44 | // 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.
45 | }
46 |
47 | - (void)applicationWillTerminate:(UIApplication *)application
48 | {
49 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
50 | }
51 |
52 | @end
53 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing/DVSViewController.m:
--------------------------------------------------------------------------------
1 | //
2 | // DVSViewController.m
3 | // TrackingAndCharacterSpacing
4 | //
5 | // Created by Bryan Clark on 8/21/14.
6 | // Copyright (c) 2014 Starbucks. All rights reserved.
7 | //
8 |
9 | #import "DVSViewController.h"
10 |
11 | #import "NSAttributedString+DVSTracking.h"
12 |
13 | @interface DVSViewController ()
14 | @property (nonatomic, strong) UILabel *label;
15 | @property (nonatomic, strong) UILabel *trackingLabel;
16 | -(void)sliderChanged:(UISlider *)sender;
17 | @end
18 |
19 | @implementation DVSViewController
20 |
21 | - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
22 | {
23 | self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
24 | if (self) {
25 | // Custom initialization
26 | }
27 | return self;
28 | }
29 |
30 | - (void)viewDidLoad
31 | {
32 | [super viewDidLoad];
33 | // Do any additional setup after loading the view.
34 | self.view.backgroundColor = [UIColor whiteColor];
35 |
36 | self.label = [UILabel new];
37 | self.label.textAlignment = NSTextAlignmentCenter;
38 | self.label.textColor = [UIColor colorWithRed:0.125 green:0.043 blue:0.345 alpha:1.000];
39 | self.label.frame = self.view.bounds;
40 |
41 | [self.view addSubview:self.label];
42 |
43 | UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake(0,
44 | CGRectGetHeight(self.view.bounds)-100,
45 | CGRectGetWidth(self.view.bounds),
46 | 100)];
47 | slider.tintColor = self.label.textColor;
48 | slider.minimumValue = 0.f;
49 | slider.maximumValue = 400.f;
50 | slider.value = 100.f;
51 | [slider addTarget:self action:@selector(sliderChanged:) forControlEvents:UIControlEventValueChanged];
52 | [self.view addSubview:slider];
53 |
54 | self.trackingLabel = [UILabel new];
55 | self.trackingLabel.textAlignment = NSTextAlignmentCenter;
56 | self.trackingLabel.textColor = self.label.textColor;
57 | self.trackingLabel.frame = CGRectOffset(slider.frame, 0, -CGRectGetHeight(slider.frame));
58 | self.trackingLabel.font = [UIFont systemFontOfSize:17.f];
59 | [self.view addSubview:self.trackingLabel];
60 |
61 | [self sliderChanged:slider];
62 | }
63 |
64 | - (void)didReceiveMemoryWarning
65 | {
66 | [super didReceiveMemoryWarning];
67 | // Dispose of any resources that can be recreated.
68 | }
69 |
70 | -(void)sliderChanged:(UISlider *)sender
71 | {
72 | self.label.attributedText = [NSAttributedString dvs_attributedStringWithString:@"DEVSIGN"
73 | tracking:sender.value
74 | font:[UIFont systemFontOfSize:17.f]];
75 |
76 | self.trackingLabel.text = [NSString stringWithFormat:@"%0.f Tracking", sender.value];
77 | }
78 |
79 | /*
80 | #pragma mark - Navigation
81 |
82 | // In a storyboard-based application, you will often want to do a little preparation before navigation
83 | - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
84 | {
85 | // Get the new view controller using [segue destinationViewController].
86 | // Pass the selected object to the new view controller.
87 | }
88 | */
89 |
90 | @end
91 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | devsign-trackingAndCharacterSpacing
2 | ===================================
3 |
4 | A look at getting typography tracking built out in iOS.
5 |
6 | This article was originally posted [here](http://www.devsign.co/notes/tracking-and-character-spacing).
7 |
8 | In tools like Photoshop and InDesign, "tracking" is the term that describes the relative amount of spacing between characters in a string of text.
9 |
10 | A wonderful bit about tracking: pick a value, and your text will have that same visual style, regardless of the size. It scales:
11 | 
12 |
13 | Unfortunately, tracking doesn't exist in iOS. What we *do* have available is character spacing:
14 |
15 | 
16 |
17 | See how character spacing doesn't stay the same when you change type size? Sketch is a great help with this - when you change a label's text size, the character spacing scales - but this isn't necessarily helpful to your development team: if there are 8 different type sizes in your app, then they've got 8 character spacing values to worry about, rather than just a single tracking value.
18 |
19 | So: we need a way to represent tracking in code, and when we came up against this problem, I couldn't find a single implementation of this on the web. So: we made one up.
20 |
21 | I made lots of PSD files and Sketch files, comping up different tracking values and character spacing values, and doing pixel comparisons to figure out what lined up. Once I found a match between tracking, character spacing, and font size, I put it in the spreadsheet. I came up with some theories as to how the two were related - and after a lot of digging, I found that it was actually a *very* simple relationship:
22 |
23 | ```
24 | characterSpacing = fontSize * tracking / 1000
25 | ```
26 |
27 | At first, I thought, "1000? Really? That's the magic number?" - but then this hypothesis totally worked on other yet-untested scenarios, so that's where we landed.
28 |
29 | Here's how you can use this in practice:
30 |
31 | If you want an easy way to convert between character spacing and tracking, I have a handy Soulver document here.
32 |
33 | If you're a dev, and you want a nice category method that'll return a properly-tracked attributed string, you can find my code over on GitHub.
34 | ```objectivec
35 | + (instancetype) dvs_attributedStringWithString:(NSString *)string
36 | tracking:(CGFloat)tracking
37 | font:(UIFont *)font
38 | {
39 | CGFloat fontSize = font.pointSize;
40 | CGFloat characterSpacing = tracking * fontSize / 1000;
41 |
42 | NSDictionary *attributes = @{NSFontAttributeName: font,
43 | NSKernAttributeName: [NSNumber numberWithFloat:characterSpacing]};
44 |
45 | return [[NSAttributedString alloc] initWithString:string attributes:attributes];
46 | }
47 | ```
48 |
49 | Here's how you'd use it in practice:
50 | ```objectivec
51 | self.label.attributedText = [NSAttributedString dvs_attributedStringWithString:@"DEVSIGN"
52 | tracking:sender.value
53 | font:[UIFont systemFontOfSize:17.f]];
54 | ```
55 |
56 | In the included sample app, you can see it in action:
57 | 
58 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing.xcodeproj/xcuserdata/bryanjclark.xcuserdatad/xcschemes/TrackingAndCharacterSpacing.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 |
--------------------------------------------------------------------------------
/Sample Project/TrackingAndCharacterSpacing.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 5300010319A707320062B12D /* NSAttributedString+DVSTracking.m in Sources */ = {isa = PBXBuildFile; fileRef = 5300010219A707320062B12D /* NSAttributedString+DVSTracking.m */; };
11 | 53E70AFE19A6F7CC00D07441 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53E70AFD19A6F7CC00D07441 /* Foundation.framework */; };
12 | 53E70B0019A6F7CC00D07441 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53E70AFF19A6F7CC00D07441 /* CoreGraphics.framework */; };
13 | 53E70B0219A6F7CC00D07441 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53E70B0119A6F7CC00D07441 /* UIKit.framework */; };
14 | 53E70B0819A6F7CC00D07441 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 53E70B0619A6F7CC00D07441 /* InfoPlist.strings */; };
15 | 53E70B0A19A6F7CC00D07441 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 53E70B0919A6F7CC00D07441 /* main.m */; };
16 | 53E70B0E19A6F7CC00D07441 /* DVSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 53E70B0D19A6F7CC00D07441 /* DVSAppDelegate.m */; };
17 | 53E70B1019A6F7CC00D07441 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 53E70B0F19A6F7CC00D07441 /* Images.xcassets */; };
18 | 53E70B1719A6F7CD00D07441 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53E70B1619A6F7CD00D07441 /* XCTest.framework */; };
19 | 53E70B1819A6F7CD00D07441 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53E70AFD19A6F7CC00D07441 /* Foundation.framework */; };
20 | 53E70B1919A6F7CD00D07441 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53E70B0119A6F7CC00D07441 /* UIKit.framework */; };
21 | 53E70B2119A6F7CD00D07441 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 53E70B1F19A6F7CD00D07441 /* InfoPlist.strings */; };
22 | 53E70B2319A6F7CD00D07441 /* TrackingAndCharacterSpacingTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 53E70B2219A6F7CD00D07441 /* TrackingAndCharacterSpacingTests.m */; };
23 | 53E70B2E19A6F7DD00D07441 /* DVSViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53E70B2D19A6F7DD00D07441 /* DVSViewController.m */; };
24 | /* End PBXBuildFile section */
25 |
26 | /* Begin PBXContainerItemProxy section */
27 | 53E70B1A19A6F7CD00D07441 /* PBXContainerItemProxy */ = {
28 | isa = PBXContainerItemProxy;
29 | containerPortal = 53E70AF219A6F7CC00D07441 /* Project object */;
30 | proxyType = 1;
31 | remoteGlobalIDString = 53E70AF919A6F7CC00D07441;
32 | remoteInfo = TrackingAndCharacterSpacing;
33 | };
34 | /* End PBXContainerItemProxy section */
35 |
36 | /* Begin PBXFileReference section */
37 | 5300010119A707320062B12D /* NSAttributedString+DVSTracking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DVSTracking.h"; path = "../../NSAttributedString+DVSTracking.h"; sourceTree = ""; };
38 | 5300010219A707320062B12D /* NSAttributedString+DVSTracking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DVSTracking.m"; path = "../../NSAttributedString+DVSTracking.m"; sourceTree = ""; };
39 | 53E70AFA19A6F7CC00D07441 /* TrackingAndCharacterSpacing.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TrackingAndCharacterSpacing.app; sourceTree = BUILT_PRODUCTS_DIR; };
40 | 53E70AFD19A6F7CC00D07441 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
41 | 53E70AFF19A6F7CC00D07441 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
42 | 53E70B0119A6F7CC00D07441 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
43 | 53E70B0519A6F7CC00D07441 /* TrackingAndCharacterSpacing-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TrackingAndCharacterSpacing-Info.plist"; sourceTree = ""; };
44 | 53E70B0719A6F7CC00D07441 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
45 | 53E70B0919A6F7CC00D07441 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
46 | 53E70B0B19A6F7CC00D07441 /* TrackingAndCharacterSpacing-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TrackingAndCharacterSpacing-Prefix.pch"; sourceTree = ""; };
47 | 53E70B0C19A6F7CC00D07441 /* DVSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DVSAppDelegate.h; sourceTree = ""; };
48 | 53E70B0D19A6F7CC00D07441 /* DVSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DVSAppDelegate.m; sourceTree = ""; };
49 | 53E70B0F19A6F7CC00D07441 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
50 | 53E70B1519A6F7CD00D07441 /* TrackingAndCharacterSpacingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TrackingAndCharacterSpacingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
51 | 53E70B1619A6F7CD00D07441 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
52 | 53E70B1E19A6F7CD00D07441 /* TrackingAndCharacterSpacingTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TrackingAndCharacterSpacingTests-Info.plist"; sourceTree = ""; };
53 | 53E70B2019A6F7CD00D07441 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
54 | 53E70B2219A6F7CD00D07441 /* TrackingAndCharacterSpacingTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TrackingAndCharacterSpacingTests.m; sourceTree = ""; };
55 | 53E70B2C19A6F7DD00D07441 /* DVSViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DVSViewController.h; sourceTree = ""; };
56 | 53E70B2D19A6F7DD00D07441 /* DVSViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DVSViewController.m; sourceTree = ""; };
57 | /* End PBXFileReference section */
58 |
59 | /* Begin PBXFrameworksBuildPhase section */
60 | 53E70AF719A6F7CC00D07441 /* Frameworks */ = {
61 | isa = PBXFrameworksBuildPhase;
62 | buildActionMask = 2147483647;
63 | files = (
64 | 53E70B0019A6F7CC00D07441 /* CoreGraphics.framework in Frameworks */,
65 | 53E70B0219A6F7CC00D07441 /* UIKit.framework in Frameworks */,
66 | 53E70AFE19A6F7CC00D07441 /* Foundation.framework in Frameworks */,
67 | );
68 | runOnlyForDeploymentPostprocessing = 0;
69 | };
70 | 53E70B1219A6F7CD00D07441 /* Frameworks */ = {
71 | isa = PBXFrameworksBuildPhase;
72 | buildActionMask = 2147483647;
73 | files = (
74 | 53E70B1719A6F7CD00D07441 /* XCTest.framework in Frameworks */,
75 | 53E70B1919A6F7CD00D07441 /* UIKit.framework in Frameworks */,
76 | 53E70B1819A6F7CD00D07441 /* Foundation.framework in Frameworks */,
77 | );
78 | runOnlyForDeploymentPostprocessing = 0;
79 | };
80 | /* End PBXFrameworksBuildPhase section */
81 |
82 | /* Begin PBXGroup section */
83 | 53E70AF119A6F7CC00D07441 = {
84 | isa = PBXGroup;
85 | children = (
86 | 53E70B0319A6F7CC00D07441 /* TrackingAndCharacterSpacing */,
87 | 53E70B1C19A6F7CD00D07441 /* TrackingAndCharacterSpacingTests */,
88 | 53E70AFC19A6F7CC00D07441 /* Frameworks */,
89 | 53E70AFB19A6F7CC00D07441 /* Products */,
90 | );
91 | sourceTree = "";
92 | };
93 | 53E70AFB19A6F7CC00D07441 /* Products */ = {
94 | isa = PBXGroup;
95 | children = (
96 | 53E70AFA19A6F7CC00D07441 /* TrackingAndCharacterSpacing.app */,
97 | 53E70B1519A6F7CD00D07441 /* TrackingAndCharacterSpacingTests.xctest */,
98 | );
99 | name = Products;
100 | sourceTree = "";
101 | };
102 | 53E70AFC19A6F7CC00D07441 /* Frameworks */ = {
103 | isa = PBXGroup;
104 | children = (
105 | 53E70AFD19A6F7CC00D07441 /* Foundation.framework */,
106 | 53E70AFF19A6F7CC00D07441 /* CoreGraphics.framework */,
107 | 53E70B0119A6F7CC00D07441 /* UIKit.framework */,
108 | 53E70B1619A6F7CD00D07441 /* XCTest.framework */,
109 | );
110 | name = Frameworks;
111 | sourceTree = "";
112 | };
113 | 53E70B0319A6F7CC00D07441 /* TrackingAndCharacterSpacing */ = {
114 | isa = PBXGroup;
115 | children = (
116 | 53E70B0C19A6F7CC00D07441 /* DVSAppDelegate.h */,
117 | 53E70B0D19A6F7CC00D07441 /* DVSAppDelegate.m */,
118 | 53E70B2C19A6F7DD00D07441 /* DVSViewController.h */,
119 | 53E70B2D19A6F7DD00D07441 /* DVSViewController.m */,
120 | 5300010119A707320062B12D /* NSAttributedString+DVSTracking.h */,
121 | 5300010219A707320062B12D /* NSAttributedString+DVSTracking.m */,
122 | 53E70B0F19A6F7CC00D07441 /* Images.xcassets */,
123 | 53E70B0419A6F7CC00D07441 /* Supporting Files */,
124 | );
125 | path = TrackingAndCharacterSpacing;
126 | sourceTree = "";
127 | };
128 | 53E70B0419A6F7CC00D07441 /* Supporting Files */ = {
129 | isa = PBXGroup;
130 | children = (
131 | 53E70B0519A6F7CC00D07441 /* TrackingAndCharacterSpacing-Info.plist */,
132 | 53E70B0619A6F7CC00D07441 /* InfoPlist.strings */,
133 | 53E70B0919A6F7CC00D07441 /* main.m */,
134 | 53E70B0B19A6F7CC00D07441 /* TrackingAndCharacterSpacing-Prefix.pch */,
135 | );
136 | name = "Supporting Files";
137 | sourceTree = "";
138 | };
139 | 53E70B1C19A6F7CD00D07441 /* TrackingAndCharacterSpacingTests */ = {
140 | isa = PBXGroup;
141 | children = (
142 | 53E70B2219A6F7CD00D07441 /* TrackingAndCharacterSpacingTests.m */,
143 | 53E70B1D19A6F7CD00D07441 /* Supporting Files */,
144 | );
145 | path = TrackingAndCharacterSpacingTests;
146 | sourceTree = "";
147 | };
148 | 53E70B1D19A6F7CD00D07441 /* Supporting Files */ = {
149 | isa = PBXGroup;
150 | children = (
151 | 53E70B1E19A6F7CD00D07441 /* TrackingAndCharacterSpacingTests-Info.plist */,
152 | 53E70B1F19A6F7CD00D07441 /* InfoPlist.strings */,
153 | );
154 | name = "Supporting Files";
155 | sourceTree = "";
156 | };
157 | /* End PBXGroup section */
158 |
159 | /* Begin PBXNativeTarget section */
160 | 53E70AF919A6F7CC00D07441 /* TrackingAndCharacterSpacing */ = {
161 | isa = PBXNativeTarget;
162 | buildConfigurationList = 53E70B2619A6F7CD00D07441 /* Build configuration list for PBXNativeTarget "TrackingAndCharacterSpacing" */;
163 | buildPhases = (
164 | 53E70AF619A6F7CC00D07441 /* Sources */,
165 | 53E70AF719A6F7CC00D07441 /* Frameworks */,
166 | 53E70AF819A6F7CC00D07441 /* Resources */,
167 | );
168 | buildRules = (
169 | );
170 | dependencies = (
171 | );
172 | name = TrackingAndCharacterSpacing;
173 | productName = TrackingAndCharacterSpacing;
174 | productReference = 53E70AFA19A6F7CC00D07441 /* TrackingAndCharacterSpacing.app */;
175 | productType = "com.apple.product-type.application";
176 | };
177 | 53E70B1419A6F7CD00D07441 /* TrackingAndCharacterSpacingTests */ = {
178 | isa = PBXNativeTarget;
179 | buildConfigurationList = 53E70B2919A6F7CD00D07441 /* Build configuration list for PBXNativeTarget "TrackingAndCharacterSpacingTests" */;
180 | buildPhases = (
181 | 53E70B1119A6F7CD00D07441 /* Sources */,
182 | 53E70B1219A6F7CD00D07441 /* Frameworks */,
183 | 53E70B1319A6F7CD00D07441 /* Resources */,
184 | );
185 | buildRules = (
186 | );
187 | dependencies = (
188 | 53E70B1B19A6F7CD00D07441 /* PBXTargetDependency */,
189 | );
190 | name = TrackingAndCharacterSpacingTests;
191 | productName = TrackingAndCharacterSpacingTests;
192 | productReference = 53E70B1519A6F7CD00D07441 /* TrackingAndCharacterSpacingTests.xctest */;
193 | productType = "com.apple.product-type.bundle.unit-test";
194 | };
195 | /* End PBXNativeTarget section */
196 |
197 | /* Begin PBXProject section */
198 | 53E70AF219A6F7CC00D07441 /* Project object */ = {
199 | isa = PBXProject;
200 | attributes = {
201 | CLASSPREFIX = DVS;
202 | LastUpgradeCheck = 0510;
203 | ORGANIZATIONNAME = Starbucks;
204 | TargetAttributes = {
205 | 53E70B1419A6F7CD00D07441 = {
206 | TestTargetID = 53E70AF919A6F7CC00D07441;
207 | };
208 | };
209 | };
210 | buildConfigurationList = 53E70AF519A6F7CC00D07441 /* Build configuration list for PBXProject "TrackingAndCharacterSpacing" */;
211 | compatibilityVersion = "Xcode 3.2";
212 | developmentRegion = English;
213 | hasScannedForEncodings = 0;
214 | knownRegions = (
215 | en,
216 | );
217 | mainGroup = 53E70AF119A6F7CC00D07441;
218 | productRefGroup = 53E70AFB19A6F7CC00D07441 /* Products */;
219 | projectDirPath = "";
220 | projectRoot = "";
221 | targets = (
222 | 53E70AF919A6F7CC00D07441 /* TrackingAndCharacterSpacing */,
223 | 53E70B1419A6F7CD00D07441 /* TrackingAndCharacterSpacingTests */,
224 | );
225 | };
226 | /* End PBXProject section */
227 |
228 | /* Begin PBXResourcesBuildPhase section */
229 | 53E70AF819A6F7CC00D07441 /* Resources */ = {
230 | isa = PBXResourcesBuildPhase;
231 | buildActionMask = 2147483647;
232 | files = (
233 | 53E70B0819A6F7CC00D07441 /* InfoPlist.strings in Resources */,
234 | 53E70B1019A6F7CC00D07441 /* Images.xcassets in Resources */,
235 | );
236 | runOnlyForDeploymentPostprocessing = 0;
237 | };
238 | 53E70B1319A6F7CD00D07441 /* Resources */ = {
239 | isa = PBXResourcesBuildPhase;
240 | buildActionMask = 2147483647;
241 | files = (
242 | 53E70B2119A6F7CD00D07441 /* InfoPlist.strings in Resources */,
243 | );
244 | runOnlyForDeploymentPostprocessing = 0;
245 | };
246 | /* End PBXResourcesBuildPhase section */
247 |
248 | /* Begin PBXSourcesBuildPhase section */
249 | 53E70AF619A6F7CC00D07441 /* Sources */ = {
250 | isa = PBXSourcesBuildPhase;
251 | buildActionMask = 2147483647;
252 | files = (
253 | 5300010319A707320062B12D /* NSAttributedString+DVSTracking.m in Sources */,
254 | 53E70B0E19A6F7CC00D07441 /* DVSAppDelegate.m in Sources */,
255 | 53E70B0A19A6F7CC00D07441 /* main.m in Sources */,
256 | 53E70B2E19A6F7DD00D07441 /* DVSViewController.m in Sources */,
257 | );
258 | runOnlyForDeploymentPostprocessing = 0;
259 | };
260 | 53E70B1119A6F7CD00D07441 /* Sources */ = {
261 | isa = PBXSourcesBuildPhase;
262 | buildActionMask = 2147483647;
263 | files = (
264 | 53E70B2319A6F7CD00D07441 /* TrackingAndCharacterSpacingTests.m in Sources */,
265 | );
266 | runOnlyForDeploymentPostprocessing = 0;
267 | };
268 | /* End PBXSourcesBuildPhase section */
269 |
270 | /* Begin PBXTargetDependency section */
271 | 53E70B1B19A6F7CD00D07441 /* PBXTargetDependency */ = {
272 | isa = PBXTargetDependency;
273 | target = 53E70AF919A6F7CC00D07441 /* TrackingAndCharacterSpacing */;
274 | targetProxy = 53E70B1A19A6F7CD00D07441 /* PBXContainerItemProxy */;
275 | };
276 | /* End PBXTargetDependency section */
277 |
278 | /* Begin PBXVariantGroup section */
279 | 53E70B0619A6F7CC00D07441 /* InfoPlist.strings */ = {
280 | isa = PBXVariantGroup;
281 | children = (
282 | 53E70B0719A6F7CC00D07441 /* en */,
283 | );
284 | name = InfoPlist.strings;
285 | sourceTree = "";
286 | };
287 | 53E70B1F19A6F7CD00D07441 /* InfoPlist.strings */ = {
288 | isa = PBXVariantGroup;
289 | children = (
290 | 53E70B2019A6F7CD00D07441 /* en */,
291 | );
292 | name = InfoPlist.strings;
293 | sourceTree = "";
294 | };
295 | /* End PBXVariantGroup section */
296 |
297 | /* Begin XCBuildConfiguration section */
298 | 53E70B2419A6F7CD00D07441 /* Debug */ = {
299 | isa = XCBuildConfiguration;
300 | buildSettings = {
301 | ALWAYS_SEARCH_USER_PATHS = NO;
302 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
303 | CLANG_CXX_LIBRARY = "libc++";
304 | CLANG_ENABLE_MODULES = YES;
305 | CLANG_ENABLE_OBJC_ARC = YES;
306 | CLANG_WARN_BOOL_CONVERSION = YES;
307 | CLANG_WARN_CONSTANT_CONVERSION = YES;
308 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
309 | CLANG_WARN_EMPTY_BODY = YES;
310 | CLANG_WARN_ENUM_CONVERSION = YES;
311 | CLANG_WARN_INT_CONVERSION = YES;
312 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
313 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
314 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
315 | COPY_PHASE_STRIP = NO;
316 | GCC_C_LANGUAGE_STANDARD = gnu99;
317 | GCC_DYNAMIC_NO_PIC = NO;
318 | GCC_OPTIMIZATION_LEVEL = 0;
319 | GCC_PREPROCESSOR_DEFINITIONS = (
320 | "DEBUG=1",
321 | "$(inherited)",
322 | );
323 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
324 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
325 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
326 | GCC_WARN_UNDECLARED_SELECTOR = YES;
327 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
328 | GCC_WARN_UNUSED_FUNCTION = YES;
329 | GCC_WARN_UNUSED_VARIABLE = YES;
330 | IPHONEOS_DEPLOYMENT_TARGET = 7.1;
331 | ONLY_ACTIVE_ARCH = YES;
332 | SDKROOT = iphoneos;
333 | };
334 | name = Debug;
335 | };
336 | 53E70B2519A6F7CD00D07441 /* Release */ = {
337 | isa = XCBuildConfiguration;
338 | buildSettings = {
339 | ALWAYS_SEARCH_USER_PATHS = NO;
340 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
341 | CLANG_CXX_LIBRARY = "libc++";
342 | CLANG_ENABLE_MODULES = YES;
343 | CLANG_ENABLE_OBJC_ARC = YES;
344 | CLANG_WARN_BOOL_CONVERSION = YES;
345 | CLANG_WARN_CONSTANT_CONVERSION = YES;
346 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
347 | CLANG_WARN_EMPTY_BODY = YES;
348 | CLANG_WARN_ENUM_CONVERSION = YES;
349 | CLANG_WARN_INT_CONVERSION = YES;
350 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
351 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
352 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
353 | COPY_PHASE_STRIP = YES;
354 | ENABLE_NS_ASSERTIONS = NO;
355 | GCC_C_LANGUAGE_STANDARD = gnu99;
356 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
357 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
358 | GCC_WARN_UNDECLARED_SELECTOR = YES;
359 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
360 | GCC_WARN_UNUSED_FUNCTION = YES;
361 | GCC_WARN_UNUSED_VARIABLE = YES;
362 | IPHONEOS_DEPLOYMENT_TARGET = 7.1;
363 | SDKROOT = iphoneos;
364 | VALIDATE_PRODUCT = YES;
365 | };
366 | name = Release;
367 | };
368 | 53E70B2719A6F7CD00D07441 /* Debug */ = {
369 | isa = XCBuildConfiguration;
370 | buildSettings = {
371 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
372 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
373 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
374 | GCC_PREFIX_HEADER = "TrackingAndCharacterSpacing/TrackingAndCharacterSpacing-Prefix.pch";
375 | INFOPLIST_FILE = "TrackingAndCharacterSpacing/TrackingAndCharacterSpacing-Info.plist";
376 | PRODUCT_NAME = "$(TARGET_NAME)";
377 | WRAPPER_EXTENSION = app;
378 | };
379 | name = Debug;
380 | };
381 | 53E70B2819A6F7CD00D07441 /* Release */ = {
382 | isa = XCBuildConfiguration;
383 | buildSettings = {
384 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
385 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
386 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
387 | GCC_PREFIX_HEADER = "TrackingAndCharacterSpacing/TrackingAndCharacterSpacing-Prefix.pch";
388 | INFOPLIST_FILE = "TrackingAndCharacterSpacing/TrackingAndCharacterSpacing-Info.plist";
389 | PRODUCT_NAME = "$(TARGET_NAME)";
390 | WRAPPER_EXTENSION = app;
391 | };
392 | name = Release;
393 | };
394 | 53E70B2A19A6F7CD00D07441 /* Debug */ = {
395 | isa = XCBuildConfiguration;
396 | buildSettings = {
397 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TrackingAndCharacterSpacing.app/TrackingAndCharacterSpacing";
398 | FRAMEWORK_SEARCH_PATHS = (
399 | "$(SDKROOT)/Developer/Library/Frameworks",
400 | "$(inherited)",
401 | "$(DEVELOPER_FRAMEWORKS_DIR)",
402 | );
403 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
404 | GCC_PREFIX_HEADER = "TrackingAndCharacterSpacing/TrackingAndCharacterSpacing-Prefix.pch";
405 | GCC_PREPROCESSOR_DEFINITIONS = (
406 | "DEBUG=1",
407 | "$(inherited)",
408 | );
409 | INFOPLIST_FILE = "TrackingAndCharacterSpacingTests/TrackingAndCharacterSpacingTests-Info.plist";
410 | PRODUCT_NAME = "$(TARGET_NAME)";
411 | TEST_HOST = "$(BUNDLE_LOADER)";
412 | WRAPPER_EXTENSION = xctest;
413 | };
414 | name = Debug;
415 | };
416 | 53E70B2B19A6F7CD00D07441 /* Release */ = {
417 | isa = XCBuildConfiguration;
418 | buildSettings = {
419 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TrackingAndCharacterSpacing.app/TrackingAndCharacterSpacing";
420 | FRAMEWORK_SEARCH_PATHS = (
421 | "$(SDKROOT)/Developer/Library/Frameworks",
422 | "$(inherited)",
423 | "$(DEVELOPER_FRAMEWORKS_DIR)",
424 | );
425 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
426 | GCC_PREFIX_HEADER = "TrackingAndCharacterSpacing/TrackingAndCharacterSpacing-Prefix.pch";
427 | INFOPLIST_FILE = "TrackingAndCharacterSpacingTests/TrackingAndCharacterSpacingTests-Info.plist";
428 | PRODUCT_NAME = "$(TARGET_NAME)";
429 | TEST_HOST = "$(BUNDLE_LOADER)";
430 | WRAPPER_EXTENSION = xctest;
431 | };
432 | name = Release;
433 | };
434 | /* End XCBuildConfiguration section */
435 |
436 | /* Begin XCConfigurationList section */
437 | 53E70AF519A6F7CC00D07441 /* Build configuration list for PBXProject "TrackingAndCharacterSpacing" */ = {
438 | isa = XCConfigurationList;
439 | buildConfigurations = (
440 | 53E70B2419A6F7CD00D07441 /* Debug */,
441 | 53E70B2519A6F7CD00D07441 /* Release */,
442 | );
443 | defaultConfigurationIsVisible = 0;
444 | defaultConfigurationName = Release;
445 | };
446 | 53E70B2619A6F7CD00D07441 /* Build configuration list for PBXNativeTarget "TrackingAndCharacterSpacing" */ = {
447 | isa = XCConfigurationList;
448 | buildConfigurations = (
449 | 53E70B2719A6F7CD00D07441 /* Debug */,
450 | 53E70B2819A6F7CD00D07441 /* Release */,
451 | );
452 | defaultConfigurationIsVisible = 0;
453 | defaultConfigurationName = Release;
454 | };
455 | 53E70B2919A6F7CD00D07441 /* Build configuration list for PBXNativeTarget "TrackingAndCharacterSpacingTests" */ = {
456 | isa = XCConfigurationList;
457 | buildConfigurations = (
458 | 53E70B2A19A6F7CD00D07441 /* Debug */,
459 | 53E70B2B19A6F7CD00D07441 /* Release */,
460 | );
461 | defaultConfigurationIsVisible = 0;
462 | defaultConfigurationName = Release;
463 | };
464 | /* End XCConfigurationList section */
465 | };
466 | rootObject = 53E70AF219A6F7CC00D07441 /* Project object */;
467 | }
468 |
--------------------------------------------------------------------------------