├── README.md └── KYCellAnimation ├── KYCellAnimation.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── KittenYang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcuserdata │ └── KittenYang.xcuserdatad │ │ └── xcschemes │ │ ├── xcschememanagement.plist │ │ └── KYCellAnimation.xcscheme └── project.pbxproj ├── TableViewController.h ├── KYCellAnimation ├── AppDelegate.h ├── main.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── AppDelegate.m └── Base.lproj │ ├── Main.storyboard │ └── LaunchScreen.xib ├── KYCellAnimationTests ├── Info.plist └── KYCellAnimationTests.m └── TableViewController.m /README.md: -------------------------------------------------------------------------------- 1 | # KYCellAnimation 2 | 给UITableViewCell增加进入的动画 3 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation.xcodeproj/project.xcworkspace/xcuserdata/KittenYang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittenYang/KYCellAnimation/HEAD/KYCellAnimation/KYCellAnimation.xcodeproj/project.xcworkspace/xcuserdata/KittenYang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KYCellAnimation/TableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TableViewController.h 3 | // KYCellAnimation 4 | // 5 | // Created by Kitten Yang on 2/14/15. 6 | // Copyright (c) 2015 Kitten Yang. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // KYCellAnimation 4 | // 5 | // Created by Kitten Yang on 2/14/15. 6 | // Copyright (c) 2015 Kitten Yang. 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 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // KYCellAnimation 4 | // 5 | // Created by Kitten Yang on 2/14/15. 6 | // Copyright (c) 2015 Kitten Yang. 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 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation.xcodeproj/xcuserdata/KittenYang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | KYCellAnimation.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 5F8737031A8F0CC0000CADF4 16 | 17 | primary 18 | 19 | 20 | 5F87371C1A8F0CC1000CADF4 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimationTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.$(PRODUCT_NAME:rfc1034identifier) 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 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimationTests/KYCellAnimationTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // KYCellAnimationTests.m 3 | // KYCellAnimationTests 4 | // 5 | // Created by Kitten Yang on 2/14/15. 6 | // Copyright (c) 2015 Kitten Yang. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface KYCellAnimationTests : XCTestCase 13 | 14 | @end 15 | 16 | @implementation KYCellAnimationTests 17 | 18 | - (void)setUp { 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 | // Put teardown code here. This method is called after the invocation of each test method in the class. 25 | [super tearDown]; 26 | } 27 | 28 | - (void)testExample { 29 | // This is an example of a functional test case. 30 | XCTAssert(YES, @"Pass"); 31 | } 32 | 33 | - (void)testPerformanceExample { 34 | // This is an example of a performance test case. 35 | [self measureBlock:^{ 36 | // Put the code you want to measure the time of here. 37 | }]; 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.$(PRODUCT_NAME:rfc1034identifier) 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 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // KYCellAnimation 4 | // 5 | // Created by Kitten Yang on 2/14/15. 6 | // Copyright (c) 2015 Kitten Yang. 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 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation/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 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation.xcodeproj/xcuserdata/KittenYang.xcuserdatad/xcschemes/KYCellAnimation.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 75 | 76 | 82 | 83 | 84 | 85 | 86 | 87 | 93 | 94 | 100 | 101 | 102 | 103 | 105 | 106 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /KYCellAnimation/TableViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // TableViewController.m 3 | // KYCellAnimation 4 | // 5 | // Created by Kitten Yang on 2/14/15. 6 | // Copyright (c) 2015 Kitten Yang. All rights reserved. 7 | // 8 | 9 | #import "TableViewController.h" 10 | 11 | @interface TableViewController () 12 | 13 | @property (strong, nonatomic) NSMutableSet *showIndexes; 14 | 15 | @end 16 | 17 | @implementation TableViewController 18 | 19 | - (void)viewDidLoad { 20 | [super viewDidLoad]; 21 | 22 | _showIndexes = [NSMutableSet set]; 23 | 24 | // Uncomment the following line to preserve selection between presentations. 25 | // self.clearsSelectionOnViewWillAppear = NO; 26 | 27 | // Uncomment the following line to display an Edit button in the navigation bar for this view controller. 28 | // self.navigationItem.rightBarButtonItem = self.editButtonItem; 29 | } 30 | 31 | - (void)didReceiveMemoryWarning { 32 | [super didReceiveMemoryWarning]; 33 | // Dispose of any resources that can be recreated. 34 | } 35 | 36 | #pragma mark - Table view data source 37 | 38 | - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { 39 | // Return the number of sections. 40 | return 30; 41 | } 42 | 43 | - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 44 | 45 | // Return the number of rows in the section. 46 | return 1; 47 | } 48 | 49 | -(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section 50 | { 51 | return 10; 52 | } 53 | 54 | - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ 55 | return 300; 56 | } 57 | 58 | 59 | - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 60 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"KYCell" forIndexPath:indexPath]; 61 | 62 | return cell; 63 | } 64 | 65 | 66 | 67 | 68 | #pragma mark - UITableViewDelegate 69 | - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{ 70 | 71 | 72 | //动画1: 73 | if (![self.showIndexes containsObject:indexPath]) { 74 | [self.showIndexes addObject:indexPath]; 75 | CGFloat rotationAngleDegrees = -30; 76 | CGFloat rotationAngleRadians = rotationAngleDegrees * (M_PI/ 180); 77 | CGPoint offsetPositioning = CGPointMake(-80, -80); 78 | 79 | 80 | CATransform3D transform = CATransform3DIdentity; 81 | transform = CATransform3DRotate(transform, rotationAngleRadians, 0.0, 0.0, 1.0); 82 | transform = CATransform3DTranslate(transform, offsetPositioning.x, offsetPositioning.y , 0.0); 83 | 84 | cell.layer.transform = transform; 85 | cell.alpha = 0.7; 86 | [UIView animateWithDuration:1 delay:0.0 usingSpringWithDamping:0.6f initialSpringVelocity:0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{ 87 | cell.layer.transform = CATransform3DIdentity; 88 | cell.layer.opacity = 1; 89 | } completion:nil]; 90 | } 91 | 92 | 93 | 94 | 95 | /* 96 | //动画2: 97 | if (![self.showIndexes containsObject:indexPath]) { 98 | [self.showIndexes addObject:indexPath]; 99 | 100 | CATransform3D rotation; 101 | rotation = CATransform3DMakeRotation( (90.0*M_PI)/180, 0.0, 0.7, 0.4); 102 | rotation.m34 = 1.0/ -600; 103 | 104 | 105 | //2. Define the initial state (Before the animation) 106 | cell.layer.shadowColor = [[UIColor blackColor]CGColor]; 107 | cell.layer.shadowOffset = CGSizeMake(10, 10); 108 | cell.alpha = 0; 109 | 110 | cell.layer.transform = rotation; 111 | cell.layer.anchorPoint = CGPointMake(0, 0.5); 112 | 113 | 114 | //3. Define the final state (After the animation) and commit the animation 115 | [UIView beginAnimations:@"rotation" context:NULL]; 116 | [UIView setAnimationDuration:0.3]; 117 | cell.layer.transform = CATransform3DIdentity; 118 | cell.alpha = 1; 119 | cell.layer.shadowOffset = CGSizeMake(0, 0); 120 | [UIView commitAnimations]; 121 | } 122 | 123 | */ 124 | 125 | /* 126 | //动画3: 127 | if (![self.showIndexes containsObject:indexPath]) { 128 | [self.showIndexes addObject:indexPath]; 129 | 130 | cell.layer.transform = CATransform3DTranslate(cell.layer.transform, 300, 0, 0); 131 | cell.alpha = 0.5; 132 | [UIView animateWithDuration:0.3 delay:0.0f usingSpringWithDamping:0.8f initialSpringVelocity:0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{ 133 | cell.layer.transform = CATransform3DIdentity; 134 | cell.alpha = 1; 135 | } completion:nil]; 136 | } 137 | */ 138 | } 139 | 140 | 141 | @end 142 | -------------------------------------------------------------------------------- /KYCellAnimation/KYCellAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 5F87370A1A8F0CC0000CADF4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8737091A8F0CC0000CADF4 /* main.m */; }; 11 | 5F87370D1A8F0CC0000CADF4 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F87370C1A8F0CC0000CADF4 /* AppDelegate.m */; }; 12 | 5F8737131A8F0CC0000CADF4 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5F8737111A8F0CC0000CADF4 /* Main.storyboard */; }; 13 | 5F8737151A8F0CC0000CADF4 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5F8737141A8F0CC0000CADF4 /* Images.xcassets */; }; 14 | 5F8737181A8F0CC0000CADF4 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5F8737161A8F0CC0000CADF4 /* LaunchScreen.xib */; }; 15 | 5F8737241A8F0CC1000CADF4 /* KYCellAnimationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8737231A8F0CC1000CADF4 /* KYCellAnimationTests.m */; }; 16 | 5F87372F1A8F0D0A000CADF4 /* TableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F87372E1A8F0D0A000CADF4 /* TableViewController.m */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXContainerItemProxy section */ 20 | 5F87371E1A8F0CC1000CADF4 /* PBXContainerItemProxy */ = { 21 | isa = PBXContainerItemProxy; 22 | containerPortal = 5F8736FC1A8F0CC0000CADF4 /* Project object */; 23 | proxyType = 1; 24 | remoteGlobalIDString = 5F8737031A8F0CC0000CADF4; 25 | remoteInfo = KYCellAnimation; 26 | }; 27 | /* End PBXContainerItemProxy section */ 28 | 29 | /* Begin PBXFileReference section */ 30 | 5F8737041A8F0CC0000CADF4 /* KYCellAnimation.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KYCellAnimation.app; sourceTree = BUILT_PRODUCTS_DIR; }; 31 | 5F8737081A8F0CC0000CADF4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 32 | 5F8737091A8F0CC0000CADF4 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 33 | 5F87370B1A8F0CC0000CADF4 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 34 | 5F87370C1A8F0CC0000CADF4 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 35 | 5F8737121A8F0CC0000CADF4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 36 | 5F8737141A8F0CC0000CADF4 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 37 | 5F8737171A8F0CC0000CADF4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 38 | 5F87371D1A8F0CC1000CADF4 /* KYCellAnimationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KYCellAnimationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | 5F8737221A8F0CC1000CADF4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | 5F8737231A8F0CC1000CADF4 /* KYCellAnimationTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KYCellAnimationTests.m; sourceTree = ""; }; 41 | 5F87372D1A8F0D0A000CADF4 /* TableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TableViewController.h; path = ../TableViewController.h; sourceTree = ""; }; 42 | 5F87372E1A8F0D0A000CADF4 /* TableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TableViewController.m; path = ../TableViewController.m; sourceTree = ""; }; 43 | /* End PBXFileReference section */ 44 | 45 | /* Begin PBXFrameworksBuildPhase section */ 46 | 5F8737011A8F0CC0000CADF4 /* Frameworks */ = { 47 | isa = PBXFrameworksBuildPhase; 48 | buildActionMask = 2147483647; 49 | files = ( 50 | ); 51 | runOnlyForDeploymentPostprocessing = 0; 52 | }; 53 | 5F87371A1A8F0CC1000CADF4 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | ); 58 | runOnlyForDeploymentPostprocessing = 0; 59 | }; 60 | /* End PBXFrameworksBuildPhase section */ 61 | 62 | /* Begin PBXGroup section */ 63 | 5F8736FB1A8F0CC0000CADF4 = { 64 | isa = PBXGroup; 65 | children = ( 66 | 5F8737061A8F0CC0000CADF4 /* KYCellAnimation */, 67 | 5F8737201A8F0CC1000CADF4 /* KYCellAnimationTests */, 68 | 5F8737051A8F0CC0000CADF4 /* Products */, 69 | ); 70 | sourceTree = ""; 71 | }; 72 | 5F8737051A8F0CC0000CADF4 /* Products */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 5F8737041A8F0CC0000CADF4 /* KYCellAnimation.app */, 76 | 5F87371D1A8F0CC1000CADF4 /* KYCellAnimationTests.xctest */, 77 | ); 78 | name = Products; 79 | sourceTree = ""; 80 | }; 81 | 5F8737061A8F0CC0000CADF4 /* KYCellAnimation */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 5F87370B1A8F0CC0000CADF4 /* AppDelegate.h */, 85 | 5F87370C1A8F0CC0000CADF4 /* AppDelegate.m */, 86 | 5F87372D1A8F0D0A000CADF4 /* TableViewController.h */, 87 | 5F87372E1A8F0D0A000CADF4 /* TableViewController.m */, 88 | 5F8737111A8F0CC0000CADF4 /* Main.storyboard */, 89 | 5F8737141A8F0CC0000CADF4 /* Images.xcassets */, 90 | 5F8737161A8F0CC0000CADF4 /* LaunchScreen.xib */, 91 | 5F8737071A8F0CC0000CADF4 /* Supporting Files */, 92 | ); 93 | path = KYCellAnimation; 94 | sourceTree = ""; 95 | }; 96 | 5F8737071A8F0CC0000CADF4 /* Supporting Files */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | 5F8737081A8F0CC0000CADF4 /* Info.plist */, 100 | 5F8737091A8F0CC0000CADF4 /* main.m */, 101 | ); 102 | name = "Supporting Files"; 103 | sourceTree = ""; 104 | }; 105 | 5F8737201A8F0CC1000CADF4 /* KYCellAnimationTests */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 5F8737231A8F0CC1000CADF4 /* KYCellAnimationTests.m */, 109 | 5F8737211A8F0CC1000CADF4 /* Supporting Files */, 110 | ); 111 | path = KYCellAnimationTests; 112 | sourceTree = ""; 113 | }; 114 | 5F8737211A8F0CC1000CADF4 /* Supporting Files */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | 5F8737221A8F0CC1000CADF4 /* Info.plist */, 118 | ); 119 | name = "Supporting Files"; 120 | sourceTree = ""; 121 | }; 122 | /* End PBXGroup section */ 123 | 124 | /* Begin PBXNativeTarget section */ 125 | 5F8737031A8F0CC0000CADF4 /* KYCellAnimation */ = { 126 | isa = PBXNativeTarget; 127 | buildConfigurationList = 5F8737271A8F0CC1000CADF4 /* Build configuration list for PBXNativeTarget "KYCellAnimation" */; 128 | buildPhases = ( 129 | 5F8737001A8F0CC0000CADF4 /* Sources */, 130 | 5F8737011A8F0CC0000CADF4 /* Frameworks */, 131 | 5F8737021A8F0CC0000CADF4 /* Resources */, 132 | ); 133 | buildRules = ( 134 | ); 135 | dependencies = ( 136 | ); 137 | name = KYCellAnimation; 138 | productName = KYCellAnimation; 139 | productReference = 5F8737041A8F0CC0000CADF4 /* KYCellAnimation.app */; 140 | productType = "com.apple.product-type.application"; 141 | }; 142 | 5F87371C1A8F0CC1000CADF4 /* KYCellAnimationTests */ = { 143 | isa = PBXNativeTarget; 144 | buildConfigurationList = 5F87372A1A8F0CC1000CADF4 /* Build configuration list for PBXNativeTarget "KYCellAnimationTests" */; 145 | buildPhases = ( 146 | 5F8737191A8F0CC1000CADF4 /* Sources */, 147 | 5F87371A1A8F0CC1000CADF4 /* Frameworks */, 148 | 5F87371B1A8F0CC1000CADF4 /* Resources */, 149 | ); 150 | buildRules = ( 151 | ); 152 | dependencies = ( 153 | 5F87371F1A8F0CC1000CADF4 /* PBXTargetDependency */, 154 | ); 155 | name = KYCellAnimationTests; 156 | productName = KYCellAnimationTests; 157 | productReference = 5F87371D1A8F0CC1000CADF4 /* KYCellAnimationTests.xctest */; 158 | productType = "com.apple.product-type.bundle.unit-test"; 159 | }; 160 | /* End PBXNativeTarget section */ 161 | 162 | /* Begin PBXProject section */ 163 | 5F8736FC1A8F0CC0000CADF4 /* Project object */ = { 164 | isa = PBXProject; 165 | attributes = { 166 | LastUpgradeCheck = 0610; 167 | ORGANIZATIONNAME = "Kitten Yang"; 168 | TargetAttributes = { 169 | 5F8737031A8F0CC0000CADF4 = { 170 | CreatedOnToolsVersion = 6.1.1; 171 | }; 172 | 5F87371C1A8F0CC1000CADF4 = { 173 | CreatedOnToolsVersion = 6.1.1; 174 | TestTargetID = 5F8737031A8F0CC0000CADF4; 175 | }; 176 | }; 177 | }; 178 | buildConfigurationList = 5F8736FF1A8F0CC0000CADF4 /* Build configuration list for PBXProject "KYCellAnimation" */; 179 | compatibilityVersion = "Xcode 3.2"; 180 | developmentRegion = English; 181 | hasScannedForEncodings = 0; 182 | knownRegions = ( 183 | en, 184 | Base, 185 | ); 186 | mainGroup = 5F8736FB1A8F0CC0000CADF4; 187 | productRefGroup = 5F8737051A8F0CC0000CADF4 /* Products */; 188 | projectDirPath = ""; 189 | projectRoot = ""; 190 | targets = ( 191 | 5F8737031A8F0CC0000CADF4 /* KYCellAnimation */, 192 | 5F87371C1A8F0CC1000CADF4 /* KYCellAnimationTests */, 193 | ); 194 | }; 195 | /* End PBXProject section */ 196 | 197 | /* Begin PBXResourcesBuildPhase section */ 198 | 5F8737021A8F0CC0000CADF4 /* Resources */ = { 199 | isa = PBXResourcesBuildPhase; 200 | buildActionMask = 2147483647; 201 | files = ( 202 | 5F8737131A8F0CC0000CADF4 /* Main.storyboard in Resources */, 203 | 5F8737181A8F0CC0000CADF4 /* LaunchScreen.xib in Resources */, 204 | 5F8737151A8F0CC0000CADF4 /* Images.xcassets in Resources */, 205 | ); 206 | runOnlyForDeploymentPostprocessing = 0; 207 | }; 208 | 5F87371B1A8F0CC1000CADF4 /* Resources */ = { 209 | isa = PBXResourcesBuildPhase; 210 | buildActionMask = 2147483647; 211 | files = ( 212 | ); 213 | runOnlyForDeploymentPostprocessing = 0; 214 | }; 215 | /* End PBXResourcesBuildPhase section */ 216 | 217 | /* Begin PBXSourcesBuildPhase section */ 218 | 5F8737001A8F0CC0000CADF4 /* Sources */ = { 219 | isa = PBXSourcesBuildPhase; 220 | buildActionMask = 2147483647; 221 | files = ( 222 | 5F87370D1A8F0CC0000CADF4 /* AppDelegate.m in Sources */, 223 | 5F87372F1A8F0D0A000CADF4 /* TableViewController.m in Sources */, 224 | 5F87370A1A8F0CC0000CADF4 /* main.m in Sources */, 225 | ); 226 | runOnlyForDeploymentPostprocessing = 0; 227 | }; 228 | 5F8737191A8F0CC1000CADF4 /* Sources */ = { 229 | isa = PBXSourcesBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | 5F8737241A8F0CC1000CADF4 /* KYCellAnimationTests.m in Sources */, 233 | ); 234 | runOnlyForDeploymentPostprocessing = 0; 235 | }; 236 | /* End PBXSourcesBuildPhase section */ 237 | 238 | /* Begin PBXTargetDependency section */ 239 | 5F87371F1A8F0CC1000CADF4 /* PBXTargetDependency */ = { 240 | isa = PBXTargetDependency; 241 | target = 5F8737031A8F0CC0000CADF4 /* KYCellAnimation */; 242 | targetProxy = 5F87371E1A8F0CC1000CADF4 /* PBXContainerItemProxy */; 243 | }; 244 | /* End PBXTargetDependency section */ 245 | 246 | /* Begin PBXVariantGroup section */ 247 | 5F8737111A8F0CC0000CADF4 /* Main.storyboard */ = { 248 | isa = PBXVariantGroup; 249 | children = ( 250 | 5F8737121A8F0CC0000CADF4 /* Base */, 251 | ); 252 | name = Main.storyboard; 253 | sourceTree = ""; 254 | }; 255 | 5F8737161A8F0CC0000CADF4 /* LaunchScreen.xib */ = { 256 | isa = PBXVariantGroup; 257 | children = ( 258 | 5F8737171A8F0CC0000CADF4 /* Base */, 259 | ); 260 | name = LaunchScreen.xib; 261 | sourceTree = ""; 262 | }; 263 | /* End PBXVariantGroup section */ 264 | 265 | /* Begin XCBuildConfiguration section */ 266 | 5F8737251A8F0CC1000CADF4 /* Debug */ = { 267 | isa = XCBuildConfiguration; 268 | buildSettings = { 269 | ALWAYS_SEARCH_USER_PATHS = NO; 270 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 271 | CLANG_CXX_LIBRARY = "libc++"; 272 | CLANG_ENABLE_MODULES = YES; 273 | CLANG_ENABLE_OBJC_ARC = YES; 274 | CLANG_WARN_BOOL_CONVERSION = YES; 275 | CLANG_WARN_CONSTANT_CONVERSION = YES; 276 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 277 | CLANG_WARN_EMPTY_BODY = YES; 278 | CLANG_WARN_ENUM_CONVERSION = YES; 279 | CLANG_WARN_INT_CONVERSION = YES; 280 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 281 | CLANG_WARN_UNREACHABLE_CODE = YES; 282 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 283 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 284 | COPY_PHASE_STRIP = NO; 285 | ENABLE_STRICT_OBJC_MSGSEND = YES; 286 | GCC_C_LANGUAGE_STANDARD = gnu99; 287 | GCC_DYNAMIC_NO_PIC = NO; 288 | GCC_OPTIMIZATION_LEVEL = 0; 289 | GCC_PREPROCESSOR_DEFINITIONS = ( 290 | "DEBUG=1", 291 | "$(inherited)", 292 | ); 293 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 294 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 295 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 296 | GCC_WARN_UNDECLARED_SELECTOR = YES; 297 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 298 | GCC_WARN_UNUSED_FUNCTION = YES; 299 | GCC_WARN_UNUSED_VARIABLE = YES; 300 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 301 | MTL_ENABLE_DEBUG_INFO = YES; 302 | ONLY_ACTIVE_ARCH = YES; 303 | SDKROOT = iphoneos; 304 | }; 305 | name = Debug; 306 | }; 307 | 5F8737261A8F0CC1000CADF4 /* Release */ = { 308 | isa = XCBuildConfiguration; 309 | buildSettings = { 310 | ALWAYS_SEARCH_USER_PATHS = NO; 311 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 312 | CLANG_CXX_LIBRARY = "libc++"; 313 | CLANG_ENABLE_MODULES = YES; 314 | CLANG_ENABLE_OBJC_ARC = YES; 315 | CLANG_WARN_BOOL_CONVERSION = YES; 316 | CLANG_WARN_CONSTANT_CONVERSION = YES; 317 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 318 | CLANG_WARN_EMPTY_BODY = YES; 319 | CLANG_WARN_ENUM_CONVERSION = YES; 320 | CLANG_WARN_INT_CONVERSION = YES; 321 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 322 | CLANG_WARN_UNREACHABLE_CODE = YES; 323 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 324 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 325 | COPY_PHASE_STRIP = YES; 326 | ENABLE_NS_ASSERTIONS = NO; 327 | ENABLE_STRICT_OBJC_MSGSEND = YES; 328 | GCC_C_LANGUAGE_STANDARD = gnu99; 329 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 330 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 331 | GCC_WARN_UNDECLARED_SELECTOR = YES; 332 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 333 | GCC_WARN_UNUSED_FUNCTION = YES; 334 | GCC_WARN_UNUSED_VARIABLE = YES; 335 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 336 | MTL_ENABLE_DEBUG_INFO = NO; 337 | SDKROOT = iphoneos; 338 | VALIDATE_PRODUCT = YES; 339 | }; 340 | name = Release; 341 | }; 342 | 5F8737281A8F0CC1000CADF4 /* Debug */ = { 343 | isa = XCBuildConfiguration; 344 | buildSettings = { 345 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 346 | CODE_SIGN_IDENTITY = "iPhone Developer: Xinyu Li (XWYND9KE57)"; 347 | INFOPLIST_FILE = KYCellAnimation/Info.plist; 348 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 349 | PRODUCT_NAME = "$(TARGET_NAME)"; 350 | }; 351 | name = Debug; 352 | }; 353 | 5F8737291A8F0CC1000CADF4 /* Release */ = { 354 | isa = XCBuildConfiguration; 355 | buildSettings = { 356 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 357 | INFOPLIST_FILE = KYCellAnimation/Info.plist; 358 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 359 | PRODUCT_NAME = "$(TARGET_NAME)"; 360 | }; 361 | name = Release; 362 | }; 363 | 5F87372B1A8F0CC1000CADF4 /* Debug */ = { 364 | isa = XCBuildConfiguration; 365 | buildSettings = { 366 | BUNDLE_LOADER = "$(TEST_HOST)"; 367 | FRAMEWORK_SEARCH_PATHS = ( 368 | "$(SDKROOT)/Developer/Library/Frameworks", 369 | "$(inherited)", 370 | ); 371 | GCC_PREPROCESSOR_DEFINITIONS = ( 372 | "DEBUG=1", 373 | "$(inherited)", 374 | ); 375 | INFOPLIST_FILE = KYCellAnimationTests/Info.plist; 376 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 377 | PRODUCT_NAME = "$(TARGET_NAME)"; 378 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KYCellAnimation.app/KYCellAnimation"; 379 | }; 380 | name = Debug; 381 | }; 382 | 5F87372C1A8F0CC1000CADF4 /* Release */ = { 383 | isa = XCBuildConfiguration; 384 | buildSettings = { 385 | BUNDLE_LOADER = "$(TEST_HOST)"; 386 | FRAMEWORK_SEARCH_PATHS = ( 387 | "$(SDKROOT)/Developer/Library/Frameworks", 388 | "$(inherited)", 389 | ); 390 | INFOPLIST_FILE = KYCellAnimationTests/Info.plist; 391 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 392 | PRODUCT_NAME = "$(TARGET_NAME)"; 393 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KYCellAnimation.app/KYCellAnimation"; 394 | }; 395 | name = Release; 396 | }; 397 | /* End XCBuildConfiguration section */ 398 | 399 | /* Begin XCConfigurationList section */ 400 | 5F8736FF1A8F0CC0000CADF4 /* Build configuration list for PBXProject "KYCellAnimation" */ = { 401 | isa = XCConfigurationList; 402 | buildConfigurations = ( 403 | 5F8737251A8F0CC1000CADF4 /* Debug */, 404 | 5F8737261A8F0CC1000CADF4 /* Release */, 405 | ); 406 | defaultConfigurationIsVisible = 0; 407 | defaultConfigurationName = Release; 408 | }; 409 | 5F8737271A8F0CC1000CADF4 /* Build configuration list for PBXNativeTarget "KYCellAnimation" */ = { 410 | isa = XCConfigurationList; 411 | buildConfigurations = ( 412 | 5F8737281A8F0CC1000CADF4 /* Debug */, 413 | 5F8737291A8F0CC1000CADF4 /* Release */, 414 | ); 415 | defaultConfigurationIsVisible = 0; 416 | }; 417 | 5F87372A1A8F0CC1000CADF4 /* Build configuration list for PBXNativeTarget "KYCellAnimationTests" */ = { 418 | isa = XCConfigurationList; 419 | buildConfigurations = ( 420 | 5F87372B1A8F0CC1000CADF4 /* Debug */, 421 | 5F87372C1A8F0CC1000CADF4 /* Release */, 422 | ); 423 | defaultConfigurationIsVisible = 0; 424 | }; 425 | /* End XCConfigurationList section */ 426 | }; 427 | rootObject = 5F8736FC1A8F0CC0000CADF4 /* Project object */; 428 | } 429 | --------------------------------------------------------------------------------