├── LXDAnimationSecondDemo ├── Assets.xcassets │ ├── Contents.json │ ├── leaf.imageset │ │ ├── leaf@2x.png │ │ └── Contents.json │ ├── background.imageset │ │ ├── background@2x.png │ │ └── Contents.json │ ├── indicator.imageset │ │ ├── indicator@2x.png │ │ └── Contents.json │ └── AppIcon.appiconset │ │ └── Contents.json ├── ViewController.h ├── AppDelegate.h ├── main.m ├── Info.plist ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── AppDelegate.m └── ViewController.m ├── LXDAnimationSecondDemo.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── linxinda.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcuserdata │ └── linxinda.xcuserdatad │ │ └── xcschemes │ │ ├── xcschememanagement.plist │ │ └── LXDAnimationSecondDemo.xcscheme └── project.pbxproj ├── LXDAnimationSecondDemoTests ├── Info.plist └── LXDAnimationSecondDemoTests.m └── LXDAnimationSecondDemoUITests ├── Info.plist └── LXDAnimationSecondDemoUITests.m /LXDAnimationSecondDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Assets.xcassets/leaf.imageset/leaf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animations/LXDAnimationSecondDemo/master/LXDAnimationSecondDemo/Assets.xcassets/leaf.imageset/leaf@2x.png -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Assets.xcassets/background.imageset/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animations/LXDAnimationSecondDemo/master/LXDAnimationSecondDemo/Assets.xcassets/background.imageset/background@2x.png -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Assets.xcassets/indicator.imageset/indicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animations/LXDAnimationSecondDemo/master/LXDAnimationSecondDemo/Assets.xcassets/indicator.imageset/indicator@2x.png -------------------------------------------------------------------------------- /LXDAnimationSecondDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo.xcodeproj/project.xcworkspace/xcuserdata/linxinda.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animations/LXDAnimationSecondDemo/master/LXDAnimationSecondDemo.xcodeproj/project.xcworkspace/xcuserdata/linxinda.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // LXDAnimationSecondDemo 4 | // 5 | // Created by 林欣达 on 16/2/2. 6 | // Copyright © 2016年 SindriLin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // LXDAnimationSecondDemo 4 | // 5 | // Created by 林欣达 on 16/2/2. 6 | // Copyright © 2016年 SindriLin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LXDAnimationSecondDemo 4 | // 5 | // Created by 林欣达 on 16/2/2. 6 | // Copyright © 2016年 SindriLin. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Assets.xcassets/leaf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "leaf@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Assets.xcassets/background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "background@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Assets.xcassets/indicator.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "indicator@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /LXDAnimationSecondDemoTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemoUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo.xcodeproj/xcuserdata/linxinda.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | LXDAnimationSecondDemo.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | EF0C5AF71C60AD1300D00428 16 | 17 | primary 18 | 19 | 20 | EF0C5B101C60AD1300D00428 21 | 22 | primary 23 | 24 | 25 | EF0C5B1B1C60AD1300D00428 26 | 27 | primary 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemoTests/LXDAnimationSecondDemoTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // LXDAnimationSecondDemoTests.m 3 | // LXDAnimationSecondDemoTests 4 | // 5 | // Created by 林欣达 on 16/2/2. 6 | // Copyright © 2016年 SindriLin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LXDAnimationSecondDemoTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation LXDAnimationSecondDemoTests 16 | 17 | - (void)setUp { 18 | [super setUp]; 19 | // Put setup code here. This method is called before the invocation of each test method in the class. 20 | } 21 | 22 | - (void)tearDown { 23 | // Put teardown code here. This method is called after the invocation of each test method in the class. 24 | [super tearDown]; 25 | } 26 | 27 | - (void)testExample { 28 | // This is an example of a functional test case. 29 | // Use XCTAssert and related functions to verify your tests produce the correct results. 30 | } 31 | 32 | - (void)testPerformanceExample { 33 | // This is an example of a performance test case. 34 | [self measureBlock:^{ 35 | // Put the code you want to measure the time of here. 36 | }]; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemoUITests/LXDAnimationSecondDemoUITests.m: -------------------------------------------------------------------------------- 1 | // 2 | // LXDAnimationSecondDemoUITests.m 3 | // LXDAnimationSecondDemoUITests 4 | // 5 | // Created by 林欣达 on 16/2/2. 6 | // Copyright © 2016年 SindriLin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LXDAnimationSecondDemoUITests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation LXDAnimationSecondDemoUITests 16 | 17 | - (void)setUp { 18 | [super setUp]; 19 | 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | 22 | // In UI tests it is usually best to stop immediately when a failure occurs. 23 | self.continueAfterFailure = NO; 24 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 25 | [[[XCUIApplication alloc] init] launch]; 26 | 27 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 28 | } 29 | 30 | - (void)tearDown { 31 | // Put teardown code here. This method is called after the invocation of each test method in the class. 32 | [super tearDown]; 33 | } 34 | 35 | - (void)testExample { 36 | // Use recording to get started writing UI tests. 37 | // Use XCTAssert and related functions to verify your tests produce the correct results. 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // LXDAnimationSecondDemo 4 | // 5 | // Created by 林欣达 on 16/2/2. 6 | // Copyright © 2016年 SindriLin. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @interface AppDelegate () 12 | 13 | @end 14 | 15 | @implementation AppDelegate 16 | 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 19 | // Override point for customization after application launch. 20 | return YES; 21 | } 22 | 23 | - (void)applicationWillResignActive:(UIApplication *)application { 24 | // 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. 25 | // 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. 26 | } 27 | 28 | - (void)applicationDidEnterBackground:(UIApplication *)application { 29 | // 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. 30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 31 | } 32 | 33 | - (void)applicationWillEnterForeground:(UIApplication *)application { 34 | // 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. 35 | } 36 | 37 | - (void)applicationDidBecomeActive:(UIApplication *)application { 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 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 43 | } 44 | 45 | @end 46 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // LXDAnimationSecondDemo 4 | // 5 | // Created by 林欣达 on 16/2/2. 6 | // Copyright © 2016年 SindriLin. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | 11 | @interface ViewController () 12 | 13 | @property (strong, nonatomic) IBOutlet UIImageView *leaf; ///< 树叶 14 | @property (strong, nonatomic) IBOutlet UILabel *summer; 15 | @property (strong, nonatomic) IBOutlet UILabel *autumn; 16 | @property (strong, nonatomic) NSTimer * timer; 17 | 18 | @end 19 | 20 | @implementation ViewController 21 | 22 | - (void)viewDidLoad { 23 | [super viewDidLoad]; 24 | } 25 | 26 | - (void)viewDidAppear:(BOOL)animated 27 | { 28 | [super viewDidAppear: animated]; 29 | 30 | 31 | /// 把下面的define这行代码注释就可以开启UIView的移动动画 32 | #define KEYFRAMEANIMATION 33 | #ifdef KEYFRAMEANIMATION 34 | _timer = [NSTimer scheduledTimerWithTimeInterval: 0.01 target: self selector: @selector(drawLeafPath) userInfo: nil repeats: YES]; 35 | 36 | /// 替换options的参数看不同的效果 37 | [UIView animateKeyframesWithDuration: 4 delay: 0 options: UIViewKeyframeAnimationOptionCalculationModeCubic animations: ^{ 38 | __block CGPoint center = _leaf.center; 39 | [UIView addKeyframeWithRelativeStartTime: 0 relativeDuration: 0.1 animations: ^{ 40 | _leaf.center = (CGPoint){ center.x + 15, center.y + 80 }; 41 | }]; 42 | [UIView addKeyframeWithRelativeStartTime: 0.1 relativeDuration: 0.15 animations: ^{ 43 | _leaf.center = (CGPoint){ center.x + 45, center.y + 185 }; 44 | }]; 45 | [UIView addKeyframeWithRelativeStartTime: 0.25 relativeDuration: 0.3 animations: ^{ 46 | _leaf.center = (CGPoint){ center.x + 90, center.y + 295 }; 47 | }]; 48 | [UIView addKeyframeWithRelativeStartTime: 0.55 relativeDuration: 0.3 animations: ^{ 49 | _leaf.center = (CGPoint){ center.x + 180, center.y + 375 }; 50 | }]; 51 | [UIView addKeyframeWithRelativeStartTime: 0.85 relativeDuration: 0.15 animations: ^{ 52 | _leaf.center = (CGPoint){ center.x + 260, center.y + 435 }; 53 | }]; 54 | [UIView addKeyframeWithRelativeStartTime: 0 relativeDuration: 1 animations: ^{ 55 | _leaf.transform = CGAffineTransformMakeRotation(M_PI); 56 | }]; 57 | } completion: ^(BOOL finished) { 58 | if (_timer) { 59 | [_timer invalidate]; 60 | _timer = nil; 61 | } 62 | }]; 63 | 64 | 65 | #else 66 | 67 | [self moveLeafWithOffset: (CGPoint){ 15, 80 } completion: ^(BOOL finished) { 68 | [self moveLeafWithOffset: (CGPoint){ 30, 105 } completion: ^(BOOL finished) { 69 | [self moveLeafWithOffset: (CGPoint){ 40, 110 } completion: ^(BOOL finished) { 70 | [self moveLeafWithOffset: (CGPoint){ 90, 80 } completion: ^(BOOL finished) { 71 | [self moveLeafWithOffset: (CGPoint){ 80, 60 } completion: nil duration: 0.6]; 72 | } duration: 1.2]; 73 | } duration: 1.2]; 74 | } duration: 0.6]; 75 | } duration: 0.4]; 76 | 77 | [UIView animateWithDuration: 4 animations: ^{ 78 | _leaf.transform = CGAffineTransformMakeRotation(M_PI); 79 | }]; 80 | #endif 81 | 82 | CGFloat offset = _autumn.frame.size.height / 2; 83 | _autumn.transform = CGAffineTransformConcat(CGAffineTransformMakeScale(1, 0), CGAffineTransformMakeTranslation(0, -offset)); 84 | CGAffineTransform transform = CGAffineTransformConcat(CGAffineTransformMakeScale(1, 0.05), CGAffineTransformMakeTranslation(0, offset)); 85 | 86 | [UIView animateWithDuration: 4 animations: ^{ 87 | _autumn.alpha = 1; 88 | _summer.alpha = 0; 89 | _autumn.transform = CGAffineTransformIdentity; 90 | _summer.transform = transform; 91 | }]; 92 | } 93 | 94 | - (void)didReceiveMemoryWarning { 95 | [super didReceiveMemoryWarning]; 96 | } 97 | 98 | - (void)dealloc 99 | { 100 | if (_timer) { 101 | [_timer invalidate]; 102 | _timer = nil; 103 | } 104 | } 105 | 106 | - (void)moveLeafWithOffset: (CGPoint)offset completion: (void(^)(BOOL finished))completion duration: (NSTimeInterval)duration 107 | { 108 | [UIView animateWithDuration: duration delay: 0 options: UIViewAnimationOptionCurveLinear animations: ^{ 109 | CGPoint center = _leaf.center; 110 | center.x += offset.x; 111 | center.y += offset.y; 112 | _leaf.center = center; 113 | } completion: completion]; 114 | } 115 | 116 | - (void)drawLeafPath 117 | { 118 | UIView * point = [[UIView alloc] initWithFrame: CGRectMake(0, 0, 2, 2)]; 119 | CALayer * layer = _leaf.layer.presentationLayer; 120 | point.backgroundColor = [UIColor redColor]; 121 | point.center = layer.position; 122 | [self.view insertSubview: point belowSubview: _leaf]; 123 | } 124 | 125 | 126 | @end 127 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo.xcodeproj/xcuserdata/linxinda.xcuserdatad/xcschemes/LXDAnimationSecondDemo.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 43 | 49 | 50 | 51 | 52 | 53 | 59 | 60 | 61 | 62 | 63 | 64 | 74 | 76 | 82 | 83 | 84 | 85 | 86 | 87 | 93 | 95 | 101 | 102 | 103 | 104 | 106 | 107 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo/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 | 27 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /LXDAnimationSecondDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | EF0C5AFD1C60AD1300D00428 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0C5AFC1C60AD1300D00428 /* main.m */; }; 11 | EF0C5B001C60AD1300D00428 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0C5AFF1C60AD1300D00428 /* AppDelegate.m */; }; 12 | EF0C5B031C60AD1300D00428 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0C5B021C60AD1300D00428 /* ViewController.m */; }; 13 | EF0C5B061C60AD1300D00428 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EF0C5B041C60AD1300D00428 /* Main.storyboard */; }; 14 | EF0C5B081C60AD1300D00428 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = EF0C5B071C60AD1300D00428 /* Assets.xcassets */; }; 15 | EF0C5B0B1C60AD1300D00428 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EF0C5B091C60AD1300D00428 /* LaunchScreen.storyboard */; }; 16 | EF0C5B161C60AD1300D00428 /* LXDAnimationSecondDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0C5B151C60AD1300D00428 /* LXDAnimationSecondDemoTests.m */; }; 17 | EF0C5B211C60AD1300D00428 /* LXDAnimationSecondDemoUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0C5B201C60AD1300D00428 /* LXDAnimationSecondDemoUITests.m */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | EF0C5B121C60AD1300D00428 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = EF0C5AF01C60AD1300D00428 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = EF0C5AF71C60AD1300D00428; 26 | remoteInfo = LXDAnimationSecondDemo; 27 | }; 28 | EF0C5B1D1C60AD1300D00428 /* PBXContainerItemProxy */ = { 29 | isa = PBXContainerItemProxy; 30 | containerPortal = EF0C5AF01C60AD1300D00428 /* Project object */; 31 | proxyType = 1; 32 | remoteGlobalIDString = EF0C5AF71C60AD1300D00428; 33 | remoteInfo = LXDAnimationSecondDemo; 34 | }; 35 | /* End PBXContainerItemProxy section */ 36 | 37 | /* Begin PBXFileReference section */ 38 | EF0C5AF81C60AD1300D00428 /* LXDAnimationSecondDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LXDAnimationSecondDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | EF0C5AFC1C60AD1300D00428 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 40 | EF0C5AFE1C60AD1300D00428 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 41 | EF0C5AFF1C60AD1300D00428 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 42 | EF0C5B011C60AD1300D00428 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; 43 | EF0C5B021C60AD1300D00428 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; 44 | EF0C5B051C60AD1300D00428 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 45 | EF0C5B071C60AD1300D00428 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 46 | EF0C5B0A1C60AD1300D00428 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 47 | EF0C5B0C1C60AD1300D00428 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 48 | EF0C5B111C60AD1300D00428 /* LXDAnimationSecondDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LXDAnimationSecondDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | EF0C5B151C60AD1300D00428 /* LXDAnimationSecondDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LXDAnimationSecondDemoTests.m; sourceTree = ""; }; 50 | EF0C5B171C60AD1300D00428 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 51 | EF0C5B1C1C60AD1300D00428 /* LXDAnimationSecondDemoUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LXDAnimationSecondDemoUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | EF0C5B201C60AD1300D00428 /* LXDAnimationSecondDemoUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LXDAnimationSecondDemoUITests.m; sourceTree = ""; }; 53 | EF0C5B221C60AD1300D00428 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 54 | /* End PBXFileReference section */ 55 | 56 | /* Begin PBXFrameworksBuildPhase section */ 57 | EF0C5AF51C60AD1300D00428 /* Frameworks */ = { 58 | isa = PBXFrameworksBuildPhase; 59 | buildActionMask = 2147483647; 60 | files = ( 61 | ); 62 | runOnlyForDeploymentPostprocessing = 0; 63 | }; 64 | EF0C5B0E1C60AD1300D00428 /* Frameworks */ = { 65 | isa = PBXFrameworksBuildPhase; 66 | buildActionMask = 2147483647; 67 | files = ( 68 | ); 69 | runOnlyForDeploymentPostprocessing = 0; 70 | }; 71 | EF0C5B191C60AD1300D00428 /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | ); 76 | runOnlyForDeploymentPostprocessing = 0; 77 | }; 78 | /* End PBXFrameworksBuildPhase section */ 79 | 80 | /* Begin PBXGroup section */ 81 | EF0C5AEF1C60AD1300D00428 = { 82 | isa = PBXGroup; 83 | children = ( 84 | EF0C5AFA1C60AD1300D00428 /* LXDAnimationSecondDemo */, 85 | EF0C5B141C60AD1300D00428 /* LXDAnimationSecondDemoTests */, 86 | EF0C5B1F1C60AD1300D00428 /* LXDAnimationSecondDemoUITests */, 87 | EF0C5AF91C60AD1300D00428 /* Products */, 88 | ); 89 | sourceTree = ""; 90 | }; 91 | EF0C5AF91C60AD1300D00428 /* Products */ = { 92 | isa = PBXGroup; 93 | children = ( 94 | EF0C5AF81C60AD1300D00428 /* LXDAnimationSecondDemo.app */, 95 | EF0C5B111C60AD1300D00428 /* LXDAnimationSecondDemoTests.xctest */, 96 | EF0C5B1C1C60AD1300D00428 /* LXDAnimationSecondDemoUITests.xctest */, 97 | ); 98 | name = Products; 99 | sourceTree = ""; 100 | }; 101 | EF0C5AFA1C60AD1300D00428 /* LXDAnimationSecondDemo */ = { 102 | isa = PBXGroup; 103 | children = ( 104 | EF0C5AFE1C60AD1300D00428 /* AppDelegate.h */, 105 | EF0C5AFF1C60AD1300D00428 /* AppDelegate.m */, 106 | EF0C5B011C60AD1300D00428 /* ViewController.h */, 107 | EF0C5B021C60AD1300D00428 /* ViewController.m */, 108 | EF0C5B041C60AD1300D00428 /* Main.storyboard */, 109 | EF0C5B071C60AD1300D00428 /* Assets.xcassets */, 110 | EF0C5B091C60AD1300D00428 /* LaunchScreen.storyboard */, 111 | EF0C5B0C1C60AD1300D00428 /* Info.plist */, 112 | EF0C5AFB1C60AD1300D00428 /* Supporting Files */, 113 | ); 114 | path = LXDAnimationSecondDemo; 115 | sourceTree = ""; 116 | }; 117 | EF0C5AFB1C60AD1300D00428 /* Supporting Files */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | EF0C5AFC1C60AD1300D00428 /* main.m */, 121 | ); 122 | name = "Supporting Files"; 123 | sourceTree = ""; 124 | }; 125 | EF0C5B141C60AD1300D00428 /* LXDAnimationSecondDemoTests */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | EF0C5B151C60AD1300D00428 /* LXDAnimationSecondDemoTests.m */, 129 | EF0C5B171C60AD1300D00428 /* Info.plist */, 130 | ); 131 | path = LXDAnimationSecondDemoTests; 132 | sourceTree = ""; 133 | }; 134 | EF0C5B1F1C60AD1300D00428 /* LXDAnimationSecondDemoUITests */ = { 135 | isa = PBXGroup; 136 | children = ( 137 | EF0C5B201C60AD1300D00428 /* LXDAnimationSecondDemoUITests.m */, 138 | EF0C5B221C60AD1300D00428 /* Info.plist */, 139 | ); 140 | path = LXDAnimationSecondDemoUITests; 141 | sourceTree = ""; 142 | }; 143 | /* End PBXGroup section */ 144 | 145 | /* Begin PBXNativeTarget section */ 146 | EF0C5AF71C60AD1300D00428 /* LXDAnimationSecondDemo */ = { 147 | isa = PBXNativeTarget; 148 | buildConfigurationList = EF0C5B251C60AD1300D00428 /* Build configuration list for PBXNativeTarget "LXDAnimationSecondDemo" */; 149 | buildPhases = ( 150 | EF0C5AF41C60AD1300D00428 /* Sources */, 151 | EF0C5AF51C60AD1300D00428 /* Frameworks */, 152 | EF0C5AF61C60AD1300D00428 /* Resources */, 153 | ); 154 | buildRules = ( 155 | ); 156 | dependencies = ( 157 | ); 158 | name = LXDAnimationSecondDemo; 159 | productName = LXDAnimationSecondDemo; 160 | productReference = EF0C5AF81C60AD1300D00428 /* LXDAnimationSecondDemo.app */; 161 | productType = "com.apple.product-type.application"; 162 | }; 163 | EF0C5B101C60AD1300D00428 /* LXDAnimationSecondDemoTests */ = { 164 | isa = PBXNativeTarget; 165 | buildConfigurationList = EF0C5B281C60AD1300D00428 /* Build configuration list for PBXNativeTarget "LXDAnimationSecondDemoTests" */; 166 | buildPhases = ( 167 | EF0C5B0D1C60AD1300D00428 /* Sources */, 168 | EF0C5B0E1C60AD1300D00428 /* Frameworks */, 169 | EF0C5B0F1C60AD1300D00428 /* Resources */, 170 | ); 171 | buildRules = ( 172 | ); 173 | dependencies = ( 174 | EF0C5B131C60AD1300D00428 /* PBXTargetDependency */, 175 | ); 176 | name = LXDAnimationSecondDemoTests; 177 | productName = LXDAnimationSecondDemoTests; 178 | productReference = EF0C5B111C60AD1300D00428 /* LXDAnimationSecondDemoTests.xctest */; 179 | productType = "com.apple.product-type.bundle.unit-test"; 180 | }; 181 | EF0C5B1B1C60AD1300D00428 /* LXDAnimationSecondDemoUITests */ = { 182 | isa = PBXNativeTarget; 183 | buildConfigurationList = EF0C5B2B1C60AD1300D00428 /* Build configuration list for PBXNativeTarget "LXDAnimationSecondDemoUITests" */; 184 | buildPhases = ( 185 | EF0C5B181C60AD1300D00428 /* Sources */, 186 | EF0C5B191C60AD1300D00428 /* Frameworks */, 187 | EF0C5B1A1C60AD1300D00428 /* Resources */, 188 | ); 189 | buildRules = ( 190 | ); 191 | dependencies = ( 192 | EF0C5B1E1C60AD1300D00428 /* PBXTargetDependency */, 193 | ); 194 | name = LXDAnimationSecondDemoUITests; 195 | productName = LXDAnimationSecondDemoUITests; 196 | productReference = EF0C5B1C1C60AD1300D00428 /* LXDAnimationSecondDemoUITests.xctest */; 197 | productType = "com.apple.product-type.bundle.ui-testing"; 198 | }; 199 | /* End PBXNativeTarget section */ 200 | 201 | /* Begin PBXProject section */ 202 | EF0C5AF01C60AD1300D00428 /* Project object */ = { 203 | isa = PBXProject; 204 | attributes = { 205 | LastUpgradeCheck = 0720; 206 | ORGANIZATIONNAME = SindriLin; 207 | TargetAttributes = { 208 | EF0C5AF71C60AD1300D00428 = { 209 | CreatedOnToolsVersion = 7.2; 210 | }; 211 | EF0C5B101C60AD1300D00428 = { 212 | CreatedOnToolsVersion = 7.2; 213 | TestTargetID = EF0C5AF71C60AD1300D00428; 214 | }; 215 | EF0C5B1B1C60AD1300D00428 = { 216 | CreatedOnToolsVersion = 7.2; 217 | TestTargetID = EF0C5AF71C60AD1300D00428; 218 | }; 219 | }; 220 | }; 221 | buildConfigurationList = EF0C5AF31C60AD1300D00428 /* Build configuration list for PBXProject "LXDAnimationSecondDemo" */; 222 | compatibilityVersion = "Xcode 3.2"; 223 | developmentRegion = English; 224 | hasScannedForEncodings = 0; 225 | knownRegions = ( 226 | en, 227 | Base, 228 | ); 229 | mainGroup = EF0C5AEF1C60AD1300D00428; 230 | productRefGroup = EF0C5AF91C60AD1300D00428 /* Products */; 231 | projectDirPath = ""; 232 | projectRoot = ""; 233 | targets = ( 234 | EF0C5AF71C60AD1300D00428 /* LXDAnimationSecondDemo */, 235 | EF0C5B101C60AD1300D00428 /* LXDAnimationSecondDemoTests */, 236 | EF0C5B1B1C60AD1300D00428 /* LXDAnimationSecondDemoUITests */, 237 | ); 238 | }; 239 | /* End PBXProject section */ 240 | 241 | /* Begin PBXResourcesBuildPhase section */ 242 | EF0C5AF61C60AD1300D00428 /* Resources */ = { 243 | isa = PBXResourcesBuildPhase; 244 | buildActionMask = 2147483647; 245 | files = ( 246 | EF0C5B0B1C60AD1300D00428 /* LaunchScreen.storyboard in Resources */, 247 | EF0C5B081C60AD1300D00428 /* Assets.xcassets in Resources */, 248 | EF0C5B061C60AD1300D00428 /* Main.storyboard in Resources */, 249 | ); 250 | runOnlyForDeploymentPostprocessing = 0; 251 | }; 252 | EF0C5B0F1C60AD1300D00428 /* Resources */ = { 253 | isa = PBXResourcesBuildPhase; 254 | buildActionMask = 2147483647; 255 | files = ( 256 | ); 257 | runOnlyForDeploymentPostprocessing = 0; 258 | }; 259 | EF0C5B1A1C60AD1300D00428 /* Resources */ = { 260 | isa = PBXResourcesBuildPhase; 261 | buildActionMask = 2147483647; 262 | files = ( 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | }; 266 | /* End PBXResourcesBuildPhase section */ 267 | 268 | /* Begin PBXSourcesBuildPhase section */ 269 | EF0C5AF41C60AD1300D00428 /* Sources */ = { 270 | isa = PBXSourcesBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | EF0C5B031C60AD1300D00428 /* ViewController.m in Sources */, 274 | EF0C5B001C60AD1300D00428 /* AppDelegate.m in Sources */, 275 | EF0C5AFD1C60AD1300D00428 /* main.m in Sources */, 276 | ); 277 | runOnlyForDeploymentPostprocessing = 0; 278 | }; 279 | EF0C5B0D1C60AD1300D00428 /* Sources */ = { 280 | isa = PBXSourcesBuildPhase; 281 | buildActionMask = 2147483647; 282 | files = ( 283 | EF0C5B161C60AD1300D00428 /* LXDAnimationSecondDemoTests.m in Sources */, 284 | ); 285 | runOnlyForDeploymentPostprocessing = 0; 286 | }; 287 | EF0C5B181C60AD1300D00428 /* Sources */ = { 288 | isa = PBXSourcesBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | EF0C5B211C60AD1300D00428 /* LXDAnimationSecondDemoUITests.m in Sources */, 292 | ); 293 | runOnlyForDeploymentPostprocessing = 0; 294 | }; 295 | /* End PBXSourcesBuildPhase section */ 296 | 297 | /* Begin PBXTargetDependency section */ 298 | EF0C5B131C60AD1300D00428 /* PBXTargetDependency */ = { 299 | isa = PBXTargetDependency; 300 | target = EF0C5AF71C60AD1300D00428 /* LXDAnimationSecondDemo */; 301 | targetProxy = EF0C5B121C60AD1300D00428 /* PBXContainerItemProxy */; 302 | }; 303 | EF0C5B1E1C60AD1300D00428 /* PBXTargetDependency */ = { 304 | isa = PBXTargetDependency; 305 | target = EF0C5AF71C60AD1300D00428 /* LXDAnimationSecondDemo */; 306 | targetProxy = EF0C5B1D1C60AD1300D00428 /* PBXContainerItemProxy */; 307 | }; 308 | /* End PBXTargetDependency section */ 309 | 310 | /* Begin PBXVariantGroup section */ 311 | EF0C5B041C60AD1300D00428 /* Main.storyboard */ = { 312 | isa = PBXVariantGroup; 313 | children = ( 314 | EF0C5B051C60AD1300D00428 /* Base */, 315 | ); 316 | name = Main.storyboard; 317 | sourceTree = ""; 318 | }; 319 | EF0C5B091C60AD1300D00428 /* LaunchScreen.storyboard */ = { 320 | isa = PBXVariantGroup; 321 | children = ( 322 | EF0C5B0A1C60AD1300D00428 /* Base */, 323 | ); 324 | name = LaunchScreen.storyboard; 325 | sourceTree = ""; 326 | }; 327 | /* End PBXVariantGroup section */ 328 | 329 | /* Begin XCBuildConfiguration section */ 330 | EF0C5B231C60AD1300D00428 /* Debug */ = { 331 | isa = XCBuildConfiguration; 332 | buildSettings = { 333 | ALWAYS_SEARCH_USER_PATHS = NO; 334 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 335 | CLANG_CXX_LIBRARY = "libc++"; 336 | CLANG_ENABLE_MODULES = YES; 337 | CLANG_ENABLE_OBJC_ARC = YES; 338 | CLANG_WARN_BOOL_CONVERSION = YES; 339 | CLANG_WARN_CONSTANT_CONVERSION = YES; 340 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 341 | CLANG_WARN_EMPTY_BODY = YES; 342 | CLANG_WARN_ENUM_CONVERSION = YES; 343 | CLANG_WARN_INT_CONVERSION = YES; 344 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 345 | CLANG_WARN_UNREACHABLE_CODE = YES; 346 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 347 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 348 | COPY_PHASE_STRIP = NO; 349 | DEBUG_INFORMATION_FORMAT = dwarf; 350 | ENABLE_STRICT_OBJC_MSGSEND = YES; 351 | ENABLE_TESTABILITY = YES; 352 | GCC_C_LANGUAGE_STANDARD = gnu99; 353 | GCC_DYNAMIC_NO_PIC = NO; 354 | GCC_NO_COMMON_BLOCKS = YES; 355 | GCC_OPTIMIZATION_LEVEL = 0; 356 | GCC_PREPROCESSOR_DEFINITIONS = ( 357 | "DEBUG=1", 358 | "$(inherited)", 359 | ); 360 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 361 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 362 | GCC_WARN_UNDECLARED_SELECTOR = YES; 363 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 364 | GCC_WARN_UNUSED_FUNCTION = YES; 365 | GCC_WARN_UNUSED_VARIABLE = YES; 366 | IPHONEOS_DEPLOYMENT_TARGET = 9.2; 367 | MTL_ENABLE_DEBUG_INFO = YES; 368 | ONLY_ACTIVE_ARCH = YES; 369 | SDKROOT = iphoneos; 370 | }; 371 | name = Debug; 372 | }; 373 | EF0C5B241C60AD1300D00428 /* Release */ = { 374 | isa = XCBuildConfiguration; 375 | buildSettings = { 376 | ALWAYS_SEARCH_USER_PATHS = NO; 377 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 378 | CLANG_CXX_LIBRARY = "libc++"; 379 | CLANG_ENABLE_MODULES = YES; 380 | CLANG_ENABLE_OBJC_ARC = YES; 381 | CLANG_WARN_BOOL_CONVERSION = YES; 382 | CLANG_WARN_CONSTANT_CONVERSION = YES; 383 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 384 | CLANG_WARN_EMPTY_BODY = YES; 385 | CLANG_WARN_ENUM_CONVERSION = YES; 386 | CLANG_WARN_INT_CONVERSION = YES; 387 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 388 | CLANG_WARN_UNREACHABLE_CODE = YES; 389 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 390 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 391 | COPY_PHASE_STRIP = NO; 392 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 393 | ENABLE_NS_ASSERTIONS = NO; 394 | ENABLE_STRICT_OBJC_MSGSEND = YES; 395 | GCC_C_LANGUAGE_STANDARD = gnu99; 396 | GCC_NO_COMMON_BLOCKS = YES; 397 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 398 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 399 | GCC_WARN_UNDECLARED_SELECTOR = YES; 400 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 401 | GCC_WARN_UNUSED_FUNCTION = YES; 402 | GCC_WARN_UNUSED_VARIABLE = YES; 403 | IPHONEOS_DEPLOYMENT_TARGET = 9.2; 404 | MTL_ENABLE_DEBUG_INFO = NO; 405 | SDKROOT = iphoneos; 406 | VALIDATE_PRODUCT = YES; 407 | }; 408 | name = Release; 409 | }; 410 | EF0C5B261C60AD1300D00428 /* Debug */ = { 411 | isa = XCBuildConfiguration; 412 | buildSettings = { 413 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 414 | INFOPLIST_FILE = LXDAnimationSecondDemo/Info.plist; 415 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 416 | PRODUCT_BUNDLE_IDENTIFIER = sindrilin.com.LXDAnimationSecondDemo; 417 | PRODUCT_NAME = "$(TARGET_NAME)"; 418 | }; 419 | name = Debug; 420 | }; 421 | EF0C5B271C60AD1300D00428 /* Release */ = { 422 | isa = XCBuildConfiguration; 423 | buildSettings = { 424 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 425 | INFOPLIST_FILE = LXDAnimationSecondDemo/Info.plist; 426 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 427 | PRODUCT_BUNDLE_IDENTIFIER = sindrilin.com.LXDAnimationSecondDemo; 428 | PRODUCT_NAME = "$(TARGET_NAME)"; 429 | }; 430 | name = Release; 431 | }; 432 | EF0C5B291C60AD1300D00428 /* Debug */ = { 433 | isa = XCBuildConfiguration; 434 | buildSettings = { 435 | BUNDLE_LOADER = "$(TEST_HOST)"; 436 | INFOPLIST_FILE = LXDAnimationSecondDemoTests/Info.plist; 437 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 438 | PRODUCT_BUNDLE_IDENTIFIER = sindrilin.com.LXDAnimationSecondDemoTests; 439 | PRODUCT_NAME = "$(TARGET_NAME)"; 440 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LXDAnimationSecondDemo.app/LXDAnimationSecondDemo"; 441 | }; 442 | name = Debug; 443 | }; 444 | EF0C5B2A1C60AD1300D00428 /* Release */ = { 445 | isa = XCBuildConfiguration; 446 | buildSettings = { 447 | BUNDLE_LOADER = "$(TEST_HOST)"; 448 | INFOPLIST_FILE = LXDAnimationSecondDemoTests/Info.plist; 449 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 450 | PRODUCT_BUNDLE_IDENTIFIER = sindrilin.com.LXDAnimationSecondDemoTests; 451 | PRODUCT_NAME = "$(TARGET_NAME)"; 452 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LXDAnimationSecondDemo.app/LXDAnimationSecondDemo"; 453 | }; 454 | name = Release; 455 | }; 456 | EF0C5B2C1C60AD1300D00428 /* Debug */ = { 457 | isa = XCBuildConfiguration; 458 | buildSettings = { 459 | INFOPLIST_FILE = LXDAnimationSecondDemoUITests/Info.plist; 460 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 461 | PRODUCT_BUNDLE_IDENTIFIER = sindrilin.com.LXDAnimationSecondDemoUITests; 462 | PRODUCT_NAME = "$(TARGET_NAME)"; 463 | TEST_TARGET_NAME = LXDAnimationSecondDemo; 464 | USES_XCTRUNNER = YES; 465 | }; 466 | name = Debug; 467 | }; 468 | EF0C5B2D1C60AD1300D00428 /* Release */ = { 469 | isa = XCBuildConfiguration; 470 | buildSettings = { 471 | INFOPLIST_FILE = LXDAnimationSecondDemoUITests/Info.plist; 472 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 473 | PRODUCT_BUNDLE_IDENTIFIER = sindrilin.com.LXDAnimationSecondDemoUITests; 474 | PRODUCT_NAME = "$(TARGET_NAME)"; 475 | TEST_TARGET_NAME = LXDAnimationSecondDemo; 476 | USES_XCTRUNNER = YES; 477 | }; 478 | name = Release; 479 | }; 480 | /* End XCBuildConfiguration section */ 481 | 482 | /* Begin XCConfigurationList section */ 483 | EF0C5AF31C60AD1300D00428 /* Build configuration list for PBXProject "LXDAnimationSecondDemo" */ = { 484 | isa = XCConfigurationList; 485 | buildConfigurations = ( 486 | EF0C5B231C60AD1300D00428 /* Debug */, 487 | EF0C5B241C60AD1300D00428 /* Release */, 488 | ); 489 | defaultConfigurationIsVisible = 0; 490 | defaultConfigurationName = Release; 491 | }; 492 | EF0C5B251C60AD1300D00428 /* Build configuration list for PBXNativeTarget "LXDAnimationSecondDemo" */ = { 493 | isa = XCConfigurationList; 494 | buildConfigurations = ( 495 | EF0C5B261C60AD1300D00428 /* Debug */, 496 | EF0C5B271C60AD1300D00428 /* Release */, 497 | ); 498 | defaultConfigurationIsVisible = 0; 499 | }; 500 | EF0C5B281C60AD1300D00428 /* Build configuration list for PBXNativeTarget "LXDAnimationSecondDemoTests" */ = { 501 | isa = XCConfigurationList; 502 | buildConfigurations = ( 503 | EF0C5B291C60AD1300D00428 /* Debug */, 504 | EF0C5B2A1C60AD1300D00428 /* Release */, 505 | ); 506 | defaultConfigurationIsVisible = 0; 507 | }; 508 | EF0C5B2B1C60AD1300D00428 /* Build configuration list for PBXNativeTarget "LXDAnimationSecondDemoUITests" */ = { 509 | isa = XCConfigurationList; 510 | buildConfigurations = ( 511 | EF0C5B2C1C60AD1300D00428 /* Debug */, 512 | EF0C5B2D1C60AD1300D00428 /* Release */, 513 | ); 514 | defaultConfigurationIsVisible = 0; 515 | }; 516 | /* End XCConfigurationList section */ 517 | }; 518 | rootObject = EF0C5AF01C60AD1300D00428 /* Project object */; 519 | } 520 | --------------------------------------------------------------------------------