├── demoGif.gif ├── ContractNaviViewDevelopProject ├── Images.xcassets │ ├── Like.imageset │ │ ├── Like.png │ │ └── Contents.json │ ├── Pic 1.imageset │ │ ├── Pic 1.png │ │ └── Contents.json │ ├── Pic 2.imageset │ │ ├── Pic 2.png │ │ └── Contents.json │ ├── Comments.imageset │ │ ├── Comments.png │ │ └── Contents.json │ └── AppIcon.appiconset │ │ └── Contents.json ├── ViewController.h ├── AppDelegate.h ├── main.m ├── Info.plist ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard └── ViewController.m ├── ContractNaviViewDevelopProject.xcodeproj ├── xcuserdata │ └── Ronaldinho.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── xcschememanagement.plist │ │ └── ContractNaviViewDevelopProject.xcscheme ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Ronaldinho.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── project.pbxproj ├── README.md └── ContractNaviViewDevelopProjectTests ├── Info.plist └── ContractNaviViewDevelopProjectTests.m /demoGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotWordland/ContractNaviViewDevelopProject/HEAD/demoGif.gif -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Images.xcassets/Like.imageset/Like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotWordland/ContractNaviViewDevelopProject/HEAD/ContractNaviViewDevelopProject/Images.xcassets/Like.imageset/Like.png -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject.xcodeproj/xcuserdata/Ronaldinho.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Images.xcassets/Pic 1.imageset/Pic 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotWordland/ContractNaviViewDevelopProject/HEAD/ContractNaviViewDevelopProject/Images.xcassets/Pic 1.imageset/Pic 1.png -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Images.xcassets/Pic 2.imageset/Pic 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotWordland/ContractNaviViewDevelopProject/HEAD/ContractNaviViewDevelopProject/Images.xcassets/Pic 2.imageset/Pic 2.png -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Images.xcassets/Comments.imageset/Comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotWordland/ContractNaviViewDevelopProject/HEAD/ContractNaviViewDevelopProject/Images.xcassets/Comments.imageset/Comments.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ContractNaviViewDevelopProject 2 | 导航栏收缩实现 - 仿携程旅行日程 本周精选详情栏目 3 | ##LonLonStudio - WL 4 | ##LonLonStudio - WL -(重庆途尔旅行ios开发者巫龙 ^_^) 5 | 6 | ![](https://github.com/HotWordland/ContractNaviViewDevelopProject/blob/master/demoGif.gif) 7 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject.xcodeproj/project.xcworkspace/xcuserdata/Ronaldinho.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotWordland/ContractNaviViewDevelopProject/HEAD/ContractNaviViewDevelopProject.xcodeproj/project.xcworkspace/xcuserdata/Ronaldinho.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ContractNaviViewDevelopProject 4 | // 5 | // Created by Ronaldinho on 15/8/2. 6 | // Copyright (c) 2015年 HotWordLand. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ContractNaviViewDevelopProject 4 | // 5 | // Created by Ronaldinho on 15/8/2. 6 | // Copyright (c) 2015年 HotWordLand. 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 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Images.xcassets/Like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Like.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Images.xcassets/Pic 1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Pic 1.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Images.xcassets/Pic 2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Pic 2.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ContractNaviViewDevelopProject 4 | // 5 | // Created by Ronaldinho on 15/8/2. 6 | // Copyright (c) 2015年 HotWordLand. 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 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Images.xcassets/Comments.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Comments.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject.xcodeproj/xcuserdata/Ronaldinho.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ContractNaviViewDevelopProject.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | FE3A469C1B6E1BBD00BFE6F6 16 | 17 | primary 18 | 19 | 20 | FE3A46B51B6E1BBD00BFE6F6 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/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 | } -------------------------------------------------------------------------------- /ContractNaviViewDevelopProjectTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.HotWordLand.$(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 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProjectTests/ContractNaviViewDevelopProjectTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // ContractNaviViewDevelopProjectTests.m 3 | // ContractNaviViewDevelopProjectTests 4 | // 5 | // Created by Ronaldinho on 15/8/2. 6 | // Copyright (c) 2015年 HotWordLand. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface ContractNaviViewDevelopProjectTests : XCTestCase 13 | 14 | @end 15 | 16 | @implementation ContractNaviViewDevelopProjectTests 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 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.HotWordLand.$(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 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // ContractNaviViewDevelopProject 4 | // 5 | // Created by Ronaldinho on 15/8/2. 6 | // Copyright (c) 2015年 HotWordLand. 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 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/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 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // ContractNaviViewDevelopProject 4 | // 5 | // Created by Ronaldinho on 15/8/2. 6 | // Copyright (c) 2015年 HotWordLand. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | 11 | @interface ViewController () 12 | 13 | @property (weak, nonatomic) IBOutlet UITableView *tableView; 14 | @property (weak, nonatomic) IBOutlet UIView *constractView; 15 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constractTopSpace; 16 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *lblTitleCenterY; 17 | @property (weak, nonatomic) IBOutlet UILabel *lblTitle; 18 | @property (weak, nonatomic) IBOutlet UILabel *lblContent; 19 | @end 20 | 21 | @implementation ViewController 22 | 23 | - (void)viewDidLoad { 24 | [super viewDidLoad]; 25 | // Do any additional setup after loading the view, typically from a nib. 26 | [_tableView addObserver:self forKeyPath:@"contentOffset" options:NSKeyValueObservingOptionNew context:nil]; 27 | 28 | } 29 | - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { 30 | if(([keyPath isEqualToString:@"contentOffset"])) { 31 | if (self.tableView.contentOffset.y > 136) { 32 | [self.constractTopSpace setConstant:-136]; 33 | [self.lblTitleCenterY setConstant:-75]; 34 | [self.lblTitle setTransform:CGAffineTransformMakeScale(0.8,0.8)]; 35 | [self.lblContent setAlpha:0]; 36 | 37 | return; 38 | } 39 | if (self.tableView.contentOffset.y < 0) { 40 | [self.constractTopSpace setConstant:0]; 41 | [self.lblTitleCenterY setConstant:0]; 42 | [self.lblTitle setTransform:CGAffineTransformIdentity]; 43 | [self.lblContent setAlpha:1]; 44 | return; 45 | } 46 | if (self.tableView.contentOffset.y == 0) { 47 | [self.lblTitle setTransform:CGAffineTransformIdentity]; 48 | [self.lblContent setAlpha:1]; 49 | 50 | } 51 | if (self.tableView.contentOffset.y > 10) { 52 | [self.view bringSubviewToFront:self.constractView]; 53 | } 54 | 55 | [self.constractTopSpace setConstant:-self.tableView.contentOffset.y]; 56 | [self.lblTitleCenterY setConstant:-self.tableView.contentOffset.y/1.8133]; 57 | [self.lblTitle setTransform:CGAffineTransformMakeScale(1-(0.0015 * self.tableView.contentOffset.y), 1-(0.0015 * self.tableView.contentOffset.y))]; 58 | [self.lblContent setAlpha:1-(self.tableView.contentOffset.y * 0.00735)]; 59 | 60 | 61 | 62 | // if (_scrollView.contentOffset.y + _scrollView.frame.size.height > _scrollView.contentSize.height - _distanceFromBottomToReload) { 63 | // if (self.refreshBlock) { 64 | // self.refreshBlock(_scrollView,YES); 65 | // } 66 | // }else if(_scrollView.contentOffset.y < _distanceFromTopToReload){ 67 | // if (self.refreshBlock) { 68 | // self.refreshBlock(_scrollView,NO); 69 | // } 70 | // } 71 | } 72 | } 73 | #pragma mark - UITableView Datasource 74 | 75 | - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { 76 | return 1; 77 | } 78 | 79 | - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 80 | return 10; 81 | } 82 | 83 | - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 84 | if (indexPath.row == 0) { 85 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"]; 86 | 87 | if(cell == nil) { 88 | cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"]; 89 | } 90 | // [cell.contentView setBackgroundColor:[UIColor clearColor]]; 91 | // [cell.contentView setAlpha:0]; 92 | [cell setBackgroundColor:[UIColor clearColor]]; 93 | return cell; 94 | 95 | } 96 | 97 | static NSString *cellIdentifier = @"cardcell"; 98 | 99 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier]; 100 | 101 | if(cell == nil) { 102 | cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier]; 103 | } 104 | 105 | // cell.textLabel.text = [NSString stringWithFormat:@"Cell %d", indexPath.row]; 106 | 107 | return cell; 108 | } 109 | - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 110 | { 111 | if (indexPath.row == 0) { 112 | return 200; 113 | } 114 | return 226; 115 | } 116 | 117 | #pragma mark - UITableView Delegate methods 118 | 119 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 120 | 121 | } 122 | - (void)didReceiveMemoryWarning { 123 | [super didReceiveMemoryWarning]; 124 | // Dispose of any resources that can be recreated. 125 | } 126 | 127 | @end 128 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject.xcodeproj/xcuserdata/Ronaldinho.xcuserdatad/xcschemes/ContractNaviViewDevelopProject.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 | 77 | 83 | 84 | 85 | 86 | 87 | 88 | 94 | 96 | 102 | 103 | 104 | 105 | 107 | 108 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject/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 | 31 | 37 | 38 | 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 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | -------------------------------------------------------------------------------- /ContractNaviViewDevelopProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | FE3A46A31B6E1BBD00BFE6F6 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = FE3A46A21B6E1BBD00BFE6F6 /* main.m */; }; 11 | FE3A46A61B6E1BBD00BFE6F6 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FE3A46A51B6E1BBD00BFE6F6 /* AppDelegate.m */; }; 12 | FE3A46A91B6E1BBD00BFE6F6 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FE3A46A81B6E1BBD00BFE6F6 /* ViewController.m */; }; 13 | FE3A46AC1B6E1BBD00BFE6F6 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FE3A46AA1B6E1BBD00BFE6F6 /* Main.storyboard */; }; 14 | FE3A46AE1B6E1BBD00BFE6F6 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FE3A46AD1B6E1BBD00BFE6F6 /* Images.xcassets */; }; 15 | FE3A46B11B6E1BBD00BFE6F6 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = FE3A46AF1B6E1BBD00BFE6F6 /* LaunchScreen.xib */; }; 16 | FE3A46BD1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests.m in Sources */ = {isa = PBXBuildFile; fileRef = FE3A46BC1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests.m */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXContainerItemProxy section */ 20 | FE3A46B71B6E1BBD00BFE6F6 /* PBXContainerItemProxy */ = { 21 | isa = PBXContainerItemProxy; 22 | containerPortal = FE3A46951B6E1BBD00BFE6F6 /* Project object */; 23 | proxyType = 1; 24 | remoteGlobalIDString = FE3A469C1B6E1BBD00BFE6F6; 25 | remoteInfo = ContractNaviViewDevelopProject; 26 | }; 27 | /* End PBXContainerItemProxy section */ 28 | 29 | /* Begin PBXFileReference section */ 30 | FE3A469D1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ContractNaviViewDevelopProject.app; sourceTree = BUILT_PRODUCTS_DIR; }; 31 | FE3A46A11B6E1BBD00BFE6F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 32 | FE3A46A21B6E1BBD00BFE6F6 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 33 | FE3A46A41B6E1BBD00BFE6F6 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 34 | FE3A46A51B6E1BBD00BFE6F6 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 35 | FE3A46A71B6E1BBD00BFE6F6 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; 36 | FE3A46A81B6E1BBD00BFE6F6 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; 37 | FE3A46AB1B6E1BBD00BFE6F6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 38 | FE3A46AD1B6E1BBD00BFE6F6 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 39 | FE3A46B01B6E1BBD00BFE6F6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 40 | FE3A46B61B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ContractNaviViewDevelopProjectTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | FE3A46BB1B6E1BBD00BFE6F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 42 | FE3A46BC1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ContractNaviViewDevelopProjectTests.m; sourceTree = ""; }; 43 | /* End PBXFileReference section */ 44 | 45 | /* Begin PBXFrameworksBuildPhase section */ 46 | FE3A469A1B6E1BBD00BFE6F6 /* Frameworks */ = { 47 | isa = PBXFrameworksBuildPhase; 48 | buildActionMask = 2147483647; 49 | files = ( 50 | ); 51 | runOnlyForDeploymentPostprocessing = 0; 52 | }; 53 | FE3A46B31B6E1BBD00BFE6F6 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | ); 58 | runOnlyForDeploymentPostprocessing = 0; 59 | }; 60 | /* End PBXFrameworksBuildPhase section */ 61 | 62 | /* Begin PBXGroup section */ 63 | FE3A46941B6E1BBD00BFE6F6 = { 64 | isa = PBXGroup; 65 | children = ( 66 | FE3A469F1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProject */, 67 | FE3A46B91B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests */, 68 | FE3A469E1B6E1BBD00BFE6F6 /* Products */, 69 | ); 70 | sourceTree = ""; 71 | }; 72 | FE3A469E1B6E1BBD00BFE6F6 /* Products */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | FE3A469D1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProject.app */, 76 | FE3A46B61B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests.xctest */, 77 | ); 78 | name = Products; 79 | sourceTree = ""; 80 | }; 81 | FE3A469F1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProject */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | FE3A46A41B6E1BBD00BFE6F6 /* AppDelegate.h */, 85 | FE3A46A51B6E1BBD00BFE6F6 /* AppDelegate.m */, 86 | FE3A46A71B6E1BBD00BFE6F6 /* ViewController.h */, 87 | FE3A46A81B6E1BBD00BFE6F6 /* ViewController.m */, 88 | FE3A46AA1B6E1BBD00BFE6F6 /* Main.storyboard */, 89 | FE3A46AD1B6E1BBD00BFE6F6 /* Images.xcassets */, 90 | FE3A46AF1B6E1BBD00BFE6F6 /* LaunchScreen.xib */, 91 | FE3A46A01B6E1BBD00BFE6F6 /* Supporting Files */, 92 | ); 93 | path = ContractNaviViewDevelopProject; 94 | sourceTree = ""; 95 | }; 96 | FE3A46A01B6E1BBD00BFE6F6 /* Supporting Files */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | FE3A46A11B6E1BBD00BFE6F6 /* Info.plist */, 100 | FE3A46A21B6E1BBD00BFE6F6 /* main.m */, 101 | ); 102 | name = "Supporting Files"; 103 | sourceTree = ""; 104 | }; 105 | FE3A46B91B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | FE3A46BC1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests.m */, 109 | FE3A46BA1B6E1BBD00BFE6F6 /* Supporting Files */, 110 | ); 111 | path = ContractNaviViewDevelopProjectTests; 112 | sourceTree = ""; 113 | }; 114 | FE3A46BA1B6E1BBD00BFE6F6 /* Supporting Files */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | FE3A46BB1B6E1BBD00BFE6F6 /* Info.plist */, 118 | ); 119 | name = "Supporting Files"; 120 | sourceTree = ""; 121 | }; 122 | /* End PBXGroup section */ 123 | 124 | /* Begin PBXNativeTarget section */ 125 | FE3A469C1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProject */ = { 126 | isa = PBXNativeTarget; 127 | buildConfigurationList = FE3A46C01B6E1BBD00BFE6F6 /* Build configuration list for PBXNativeTarget "ContractNaviViewDevelopProject" */; 128 | buildPhases = ( 129 | FE3A46991B6E1BBD00BFE6F6 /* Sources */, 130 | FE3A469A1B6E1BBD00BFE6F6 /* Frameworks */, 131 | FE3A469B1B6E1BBD00BFE6F6 /* Resources */, 132 | ); 133 | buildRules = ( 134 | ); 135 | dependencies = ( 136 | ); 137 | name = ContractNaviViewDevelopProject; 138 | productName = ContractNaviViewDevelopProject; 139 | productReference = FE3A469D1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProject.app */; 140 | productType = "com.apple.product-type.application"; 141 | }; 142 | FE3A46B51B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests */ = { 143 | isa = PBXNativeTarget; 144 | buildConfigurationList = FE3A46C31B6E1BBD00BFE6F6 /* Build configuration list for PBXNativeTarget "ContractNaviViewDevelopProjectTests" */; 145 | buildPhases = ( 146 | FE3A46B21B6E1BBD00BFE6F6 /* Sources */, 147 | FE3A46B31B6E1BBD00BFE6F6 /* Frameworks */, 148 | FE3A46B41B6E1BBD00BFE6F6 /* Resources */, 149 | ); 150 | buildRules = ( 151 | ); 152 | dependencies = ( 153 | FE3A46B81B6E1BBD00BFE6F6 /* PBXTargetDependency */, 154 | ); 155 | name = ContractNaviViewDevelopProjectTests; 156 | productName = ContractNaviViewDevelopProjectTests; 157 | productReference = FE3A46B61B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests.xctest */; 158 | productType = "com.apple.product-type.bundle.unit-test"; 159 | }; 160 | /* End PBXNativeTarget section */ 161 | 162 | /* Begin PBXProject section */ 163 | FE3A46951B6E1BBD00BFE6F6 /* Project object */ = { 164 | isa = PBXProject; 165 | attributes = { 166 | LastUpgradeCheck = 0630; 167 | ORGANIZATIONNAME = HotWordLand; 168 | TargetAttributes = { 169 | FE3A469C1B6E1BBD00BFE6F6 = { 170 | CreatedOnToolsVersion = 6.3; 171 | }; 172 | FE3A46B51B6E1BBD00BFE6F6 = { 173 | CreatedOnToolsVersion = 6.3; 174 | TestTargetID = FE3A469C1B6E1BBD00BFE6F6; 175 | }; 176 | }; 177 | }; 178 | buildConfigurationList = FE3A46981B6E1BBD00BFE6F6 /* Build configuration list for PBXProject "ContractNaviViewDevelopProject" */; 179 | compatibilityVersion = "Xcode 3.2"; 180 | developmentRegion = English; 181 | hasScannedForEncodings = 0; 182 | knownRegions = ( 183 | en, 184 | Base, 185 | ); 186 | mainGroup = FE3A46941B6E1BBD00BFE6F6; 187 | productRefGroup = FE3A469E1B6E1BBD00BFE6F6 /* Products */; 188 | projectDirPath = ""; 189 | projectRoot = ""; 190 | targets = ( 191 | FE3A469C1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProject */, 192 | FE3A46B51B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests */, 193 | ); 194 | }; 195 | /* End PBXProject section */ 196 | 197 | /* Begin PBXResourcesBuildPhase section */ 198 | FE3A469B1B6E1BBD00BFE6F6 /* Resources */ = { 199 | isa = PBXResourcesBuildPhase; 200 | buildActionMask = 2147483647; 201 | files = ( 202 | FE3A46AC1B6E1BBD00BFE6F6 /* Main.storyboard in Resources */, 203 | FE3A46B11B6E1BBD00BFE6F6 /* LaunchScreen.xib in Resources */, 204 | FE3A46AE1B6E1BBD00BFE6F6 /* Images.xcassets in Resources */, 205 | ); 206 | runOnlyForDeploymentPostprocessing = 0; 207 | }; 208 | FE3A46B41B6E1BBD00BFE6F6 /* Resources */ = { 209 | isa = PBXResourcesBuildPhase; 210 | buildActionMask = 2147483647; 211 | files = ( 212 | ); 213 | runOnlyForDeploymentPostprocessing = 0; 214 | }; 215 | /* End PBXResourcesBuildPhase section */ 216 | 217 | /* Begin PBXSourcesBuildPhase section */ 218 | FE3A46991B6E1BBD00BFE6F6 /* Sources */ = { 219 | isa = PBXSourcesBuildPhase; 220 | buildActionMask = 2147483647; 221 | files = ( 222 | FE3A46A91B6E1BBD00BFE6F6 /* ViewController.m in Sources */, 223 | FE3A46A61B6E1BBD00BFE6F6 /* AppDelegate.m in Sources */, 224 | FE3A46A31B6E1BBD00BFE6F6 /* main.m in Sources */, 225 | ); 226 | runOnlyForDeploymentPostprocessing = 0; 227 | }; 228 | FE3A46B21B6E1BBD00BFE6F6 /* Sources */ = { 229 | isa = PBXSourcesBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | FE3A46BD1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProjectTests.m in Sources */, 233 | ); 234 | runOnlyForDeploymentPostprocessing = 0; 235 | }; 236 | /* End PBXSourcesBuildPhase section */ 237 | 238 | /* Begin PBXTargetDependency section */ 239 | FE3A46B81B6E1BBD00BFE6F6 /* PBXTargetDependency */ = { 240 | isa = PBXTargetDependency; 241 | target = FE3A469C1B6E1BBD00BFE6F6 /* ContractNaviViewDevelopProject */; 242 | targetProxy = FE3A46B71B6E1BBD00BFE6F6 /* PBXContainerItemProxy */; 243 | }; 244 | /* End PBXTargetDependency section */ 245 | 246 | /* Begin PBXVariantGroup section */ 247 | FE3A46AA1B6E1BBD00BFE6F6 /* Main.storyboard */ = { 248 | isa = PBXVariantGroup; 249 | children = ( 250 | FE3A46AB1B6E1BBD00BFE6F6 /* Base */, 251 | ); 252 | name = Main.storyboard; 253 | sourceTree = ""; 254 | }; 255 | FE3A46AF1B6E1BBD00BFE6F6 /* LaunchScreen.xib */ = { 256 | isa = PBXVariantGroup; 257 | children = ( 258 | FE3A46B01B6E1BBD00BFE6F6 /* Base */, 259 | ); 260 | name = LaunchScreen.xib; 261 | sourceTree = ""; 262 | }; 263 | /* End PBXVariantGroup section */ 264 | 265 | /* Begin XCBuildConfiguration section */ 266 | FE3A46BE1B6E1BBD00BFE6F6 /* 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 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 286 | ENABLE_STRICT_OBJC_MSGSEND = YES; 287 | GCC_C_LANGUAGE_STANDARD = gnu99; 288 | GCC_DYNAMIC_NO_PIC = NO; 289 | GCC_NO_COMMON_BLOCKS = YES; 290 | GCC_OPTIMIZATION_LEVEL = 0; 291 | GCC_PREPROCESSOR_DEFINITIONS = ( 292 | "DEBUG=1", 293 | "$(inherited)", 294 | ); 295 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 296 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 297 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 298 | GCC_WARN_UNDECLARED_SELECTOR = YES; 299 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 300 | GCC_WARN_UNUSED_FUNCTION = YES; 301 | GCC_WARN_UNUSED_VARIABLE = YES; 302 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 303 | MTL_ENABLE_DEBUG_INFO = YES; 304 | ONLY_ACTIVE_ARCH = YES; 305 | SDKROOT = iphoneos; 306 | }; 307 | name = Debug; 308 | }; 309 | FE3A46BF1B6E1BBD00BFE6F6 /* Release */ = { 310 | isa = XCBuildConfiguration; 311 | buildSettings = { 312 | ALWAYS_SEARCH_USER_PATHS = NO; 313 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 314 | CLANG_CXX_LIBRARY = "libc++"; 315 | CLANG_ENABLE_MODULES = YES; 316 | CLANG_ENABLE_OBJC_ARC = YES; 317 | CLANG_WARN_BOOL_CONVERSION = YES; 318 | CLANG_WARN_CONSTANT_CONVERSION = YES; 319 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 320 | CLANG_WARN_EMPTY_BODY = YES; 321 | CLANG_WARN_ENUM_CONVERSION = YES; 322 | CLANG_WARN_INT_CONVERSION = YES; 323 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 324 | CLANG_WARN_UNREACHABLE_CODE = YES; 325 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 326 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 327 | COPY_PHASE_STRIP = NO; 328 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 329 | ENABLE_NS_ASSERTIONS = NO; 330 | ENABLE_STRICT_OBJC_MSGSEND = YES; 331 | GCC_C_LANGUAGE_STANDARD = gnu99; 332 | GCC_NO_COMMON_BLOCKS = YES; 333 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 334 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 335 | GCC_WARN_UNDECLARED_SELECTOR = YES; 336 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 337 | GCC_WARN_UNUSED_FUNCTION = YES; 338 | GCC_WARN_UNUSED_VARIABLE = YES; 339 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 340 | MTL_ENABLE_DEBUG_INFO = NO; 341 | SDKROOT = iphoneos; 342 | VALIDATE_PRODUCT = YES; 343 | }; 344 | name = Release; 345 | }; 346 | FE3A46C11B6E1BBD00BFE6F6 /* Debug */ = { 347 | isa = XCBuildConfiguration; 348 | buildSettings = { 349 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 350 | INFOPLIST_FILE = ContractNaviViewDevelopProject/Info.plist; 351 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 352 | PRODUCT_NAME = "$(TARGET_NAME)"; 353 | }; 354 | name = Debug; 355 | }; 356 | FE3A46C21B6E1BBD00BFE6F6 /* Release */ = { 357 | isa = XCBuildConfiguration; 358 | buildSettings = { 359 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 360 | INFOPLIST_FILE = ContractNaviViewDevelopProject/Info.plist; 361 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 362 | PRODUCT_NAME = "$(TARGET_NAME)"; 363 | }; 364 | name = Release; 365 | }; 366 | FE3A46C41B6E1BBD00BFE6F6 /* Debug */ = { 367 | isa = XCBuildConfiguration; 368 | buildSettings = { 369 | BUNDLE_LOADER = "$(TEST_HOST)"; 370 | FRAMEWORK_SEARCH_PATHS = ( 371 | "$(SDKROOT)/Developer/Library/Frameworks", 372 | "$(inherited)", 373 | ); 374 | GCC_PREPROCESSOR_DEFINITIONS = ( 375 | "DEBUG=1", 376 | "$(inherited)", 377 | ); 378 | INFOPLIST_FILE = ContractNaviViewDevelopProjectTests/Info.plist; 379 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 380 | PRODUCT_NAME = "$(TARGET_NAME)"; 381 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ContractNaviViewDevelopProject.app/ContractNaviViewDevelopProject"; 382 | }; 383 | name = Debug; 384 | }; 385 | FE3A46C51B6E1BBD00BFE6F6 /* Release */ = { 386 | isa = XCBuildConfiguration; 387 | buildSettings = { 388 | BUNDLE_LOADER = "$(TEST_HOST)"; 389 | FRAMEWORK_SEARCH_PATHS = ( 390 | "$(SDKROOT)/Developer/Library/Frameworks", 391 | "$(inherited)", 392 | ); 393 | INFOPLIST_FILE = ContractNaviViewDevelopProjectTests/Info.plist; 394 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 395 | PRODUCT_NAME = "$(TARGET_NAME)"; 396 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ContractNaviViewDevelopProject.app/ContractNaviViewDevelopProject"; 397 | }; 398 | name = Release; 399 | }; 400 | /* End XCBuildConfiguration section */ 401 | 402 | /* Begin XCConfigurationList section */ 403 | FE3A46981B6E1BBD00BFE6F6 /* Build configuration list for PBXProject "ContractNaviViewDevelopProject" */ = { 404 | isa = XCConfigurationList; 405 | buildConfigurations = ( 406 | FE3A46BE1B6E1BBD00BFE6F6 /* Debug */, 407 | FE3A46BF1B6E1BBD00BFE6F6 /* Release */, 408 | ); 409 | defaultConfigurationIsVisible = 0; 410 | defaultConfigurationName = Release; 411 | }; 412 | FE3A46C01B6E1BBD00BFE6F6 /* Build configuration list for PBXNativeTarget "ContractNaviViewDevelopProject" */ = { 413 | isa = XCConfigurationList; 414 | buildConfigurations = ( 415 | FE3A46C11B6E1BBD00BFE6F6 /* Debug */, 416 | FE3A46C21B6E1BBD00BFE6F6 /* Release */, 417 | ); 418 | defaultConfigurationIsVisible = 0; 419 | }; 420 | FE3A46C31B6E1BBD00BFE6F6 /* Build configuration list for PBXNativeTarget "ContractNaviViewDevelopProjectTests" */ = { 421 | isa = XCConfigurationList; 422 | buildConfigurations = ( 423 | FE3A46C41B6E1BBD00BFE6F6 /* Debug */, 424 | FE3A46C51B6E1BBD00BFE6F6 /* Release */, 425 | ); 426 | defaultConfigurationIsVisible = 0; 427 | }; 428 | /* End XCConfigurationList section */ 429 | }; 430 | rootObject = FE3A46951B6E1BBD00BFE6F6 /* Project object */; 431 | } 432 | --------------------------------------------------------------------------------