├── FILE_LICENSE ├── readme.md ├── .gitignore ├── MainProject.xcodeproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcuserdata │ └── casa.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── project.pbxproj ├── MainProject ├── ViewController.h ├── AViewController │ ├── AViewController.h │ └── AViewController.m ├── AppDelegate.h ├── BViewController │ ├── BViewController.h │ └── BViewController.m ├── main.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.m ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard └── AppDelegate.m └── Podfile /FILE_LICENSE: -------------------------------------------------------------------------------- 1 | MIT 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | pod "MainProject" 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | MainProject.xcodeproj/xcuserdata/ 2 | MainProject.xcworkspace/ 3 | Pods/ 4 | *.swp 5 | Podfile.lock 6 | .DS_Store 7 | MainProject.xcodeproj/project.xcworkspace/xcuserdata/ 8 | -------------------------------------------------------------------------------- /MainProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MainProject/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /MainProject/AViewController/AViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AViewController.h 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MainProject/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. 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 | -------------------------------------------------------------------------------- /MainProject/BViewController/BViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BViewController.h 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BViewController : UIViewController 12 | 13 | - (instancetype)initWithContentText:(NSString *)contentText; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MainProject/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. 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 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | source 'https://github.com/ModulizationDemo/PrivatePods.git' 5 | source 'https://github.com/CocoaPods/Specs.git' 6 | 7 | target 'MainProject' do 8 | # Uncomment this line if you're using Swift or would like to use dynamic frameworks 9 | # use_frameworks! 10 | 11 | # Private Pods 12 | pod 'HandyFrame' 13 | 14 | end 15 | -------------------------------------------------------------------------------- /MainProject.xcodeproj/xcuserdata/casa.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | MainProject.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 4A510BA71DFB91AF005B9DB9 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /MainProject/BViewController/BViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // BViewController.m 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. All rights reserved. 7 | // 8 | 9 | #import "BViewController.h" 10 | #import 11 | 12 | @interface BViewController () 13 | 14 | @property (nonatomic, strong) UILabel *contentLabel; 15 | 16 | @end 17 | 18 | @implementation BViewController 19 | 20 | #pragma mark - life cycle 21 | - (instancetype)initWithContentText:(NSString *)contentText 22 | { 23 | self = [super init]; 24 | if (self) { 25 | self.contentLabel.text = contentText; 26 | } 27 | return self; 28 | } 29 | 30 | - (void)viewDidLoad 31 | { 32 | [super viewDidLoad]; 33 | self.view.backgroundColor = [UIColor whiteColor]; 34 | [self.view addSubview:self.contentLabel]; 35 | } 36 | 37 | - (void)viewWillLayoutSubviews 38 | { 39 | [super viewWillLayoutSubviews]; 40 | [self.contentLabel sizeToFit]; 41 | [self.contentLabel centerEqualToView:self.view]; 42 | } 43 | 44 | #pragma mark - getters and setters 45 | - (UILabel *)contentLabel 46 | { 47 | if (_contentLabel == nil) { 48 | _contentLabel = [[UILabel alloc] init]; 49 | _contentLabel.textColor = [UIColor blueColor]; 50 | } 51 | return _contentLabel; 52 | } 53 | 54 | @end 55 | -------------------------------------------------------------------------------- /MainProject/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 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } -------------------------------------------------------------------------------- /MainProject/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 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /MainProject/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | #import 11 | #import "AViewController.h" 12 | 13 | @interface ViewController () 14 | 15 | @property (nonatomic, strong) UIButton *pushAViewControllerButton; 16 | 17 | @end 18 | 19 | @implementation ViewController 20 | 21 | #pragma mark - life cycle 22 | - (void)viewDidLoad 23 | { 24 | [super viewDidLoad]; 25 | [self.view addSubview:self.pushAViewControllerButton]; 26 | } 27 | 28 | - (void)viewWillLayoutSubviews 29 | { 30 | [super viewWillLayoutSubviews]; 31 | 32 | [self.pushAViewControllerButton sizeToFit]; 33 | [self.pushAViewControllerButton centerEqualToView:self.view]; 34 | } 35 | 36 | #pragma mark - event response 37 | - (void)didTappedPushAViewControllerButton:(UIButton *)button 38 | { 39 | AViewController *viewController = [[AViewController alloc] init]; 40 | [self.navigationController pushViewController:viewController animated:YES]; 41 | } 42 | 43 | #pragma mark - getters and setters 44 | - (UIButton *)pushAViewControllerButton 45 | { 46 | if (_pushAViewControllerButton == nil) { 47 | _pushAViewControllerButton = [UIButton buttonWithType:UIButtonTypeCustom]; 48 | [_pushAViewControllerButton setTitle:@"push A view controller" forState:UIControlStateNormal]; 49 | [_pushAViewControllerButton setTitleColor:[UIColor blueColor] forState:UIControlStateNormal]; 50 | [_pushAViewControllerButton addTarget:self action:@selector(didTappedPushAViewControllerButton:) forControlEvents:UIControlEventTouchUpInside]; 51 | } 52 | return _pushAViewControllerButton; 53 | } 54 | 55 | @end 56 | -------------------------------------------------------------------------------- /MainProject/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 | -------------------------------------------------------------------------------- /MainProject/AViewController/AViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // AViewController.m 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. All rights reserved. 7 | // 8 | 9 | #import "AViewController.h" 10 | #import "BViewController.h" 11 | #import 12 | 13 | @interface AViewController () 14 | 15 | @property (nonatomic, strong) UIButton *pushBViewControllerButton; 16 | 17 | @end 18 | 19 | @implementation AViewController 20 | 21 | #pragma mark - life cycle 22 | - (void)viewDidLoad 23 | { 24 | [super viewDidLoad]; 25 | self.view.backgroundColor = [UIColor whiteColor]; 26 | [self.view addSubview:self.pushBViewControllerButton]; 27 | } 28 | 29 | - (void)viewWillLayoutSubviews 30 | { 31 | [super viewWillLayoutSubviews]; 32 | 33 | [self.pushBViewControllerButton sizeToFit]; 34 | [self.pushBViewControllerButton centerEqualToView:self.view]; 35 | } 36 | 37 | #pragma mark - event response 38 | - (void)didTappedPushBViewControllerButton:(UIButton *)button 39 | { 40 | BViewController *viewController = [[BViewController alloc] initWithContentText:@"hello, world!"]; 41 | [self.navigationController pushViewController:viewController animated:YES]; 42 | } 43 | 44 | #pragma mark - getters and setters 45 | - (UIButton *)pushBViewControllerButton 46 | { 47 | if (_pushBViewControllerButton == nil) { 48 | _pushBViewControllerButton = [UIButton buttonWithType:UIButtonTypeCustom]; 49 | [_pushBViewControllerButton setTitle:@"push B view controller" forState:UIControlStateNormal]; 50 | [_pushBViewControllerButton setTitleColor:[UIColor blueColor] forState:UIControlStateNormal]; 51 | [_pushBViewControllerButton addTarget:self action:@selector(didTappedPushBViewControllerButton:) forControlEvents:UIControlEventTouchUpInside]; 52 | } 53 | return _pushBViewControllerButton; 54 | } 55 | 56 | @end 57 | -------------------------------------------------------------------------------- /MainProject/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // MainProject 4 | // 5 | // Created by casa on 2016/12/10. 6 | // Copyright © 2016年 casa. 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 | 24 | - (void)applicationWillResignActive:(UIApplication *)application { 25 | // 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. 26 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 27 | } 28 | 29 | 30 | - (void)applicationDidEnterBackground:(UIApplication *)application { 31 | // 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. 32 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 33 | } 34 | 35 | 36 | - (void)applicationWillEnterForeground:(UIApplication *)application { 37 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 38 | } 39 | 40 | 41 | - (void)applicationDidBecomeActive:(UIApplication *)application { 42 | // 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. 43 | } 44 | 45 | 46 | - (void)applicationWillTerminate:(UIApplication *)application { 47 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 48 | } 49 | 50 | 51 | @end 52 | -------------------------------------------------------------------------------- /MainProject/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 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /MainProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 4A510BAD1DFB91B0005B9DB9 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A510BAC1DFB91B0005B9DB9 /* main.m */; }; 11 | 4A510BB01DFB91B0005B9DB9 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A510BAF1DFB91B0005B9DB9 /* AppDelegate.m */; }; 12 | 4A510BB31DFB91B0005B9DB9 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A510BB21DFB91B0005B9DB9 /* ViewController.m */; }; 13 | 4A510BB61DFB91B0005B9DB9 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4A510BB41DFB91B0005B9DB9 /* Main.storyboard */; }; 14 | 4A510BB81DFB91B0005B9DB9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4A510BB71DFB91B0005B9DB9 /* Assets.xcassets */; }; 15 | 4A510BBB1DFB91B0005B9DB9 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4A510BB91DFB91B0005B9DB9 /* LaunchScreen.storyboard */; }; 16 | 4A510BC61DFB9256005B9DB9 /* AViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A510BC51DFB9256005B9DB9 /* AViewController.m */; }; 17 | 4A510BC91DFB925E005B9DB9 /* BViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A510BC81DFB925E005B9DB9 /* BViewController.m */; }; 18 | 659621CADA0A93D59DD76310 /* libPods-MainProject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BC0B2024D7061067AECDBCA4 /* libPods-MainProject.a */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXFileReference section */ 22 | 4003BDE36800E7259021C8F5 /* Pods-MainProject.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MainProject.release.xcconfig"; path = "Pods/Target Support Files/Pods-MainProject/Pods-MainProject.release.xcconfig"; sourceTree = ""; }; 23 | 4732F0A38173004B46459775 /* Pods-MainProject.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MainProject.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MainProject/Pods-MainProject.debug.xcconfig"; sourceTree = ""; }; 24 | 4A510BA81DFB91B0005B9DB9 /* MainProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MainProject.app; sourceTree = BUILT_PRODUCTS_DIR; }; 25 | 4A510BAC1DFB91B0005B9DB9 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 26 | 4A510BAE1DFB91B0005B9DB9 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 27 | 4A510BAF1DFB91B0005B9DB9 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 28 | 4A510BB11DFB91B0005B9DB9 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; 29 | 4A510BB21DFB91B0005B9DB9 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; 30 | 4A510BB51DFB91B0005B9DB9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 31 | 4A510BB71DFB91B0005B9DB9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 32 | 4A510BBA1DFB91B0005B9DB9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 33 | 4A510BBC1DFB91B0005B9DB9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 34 | 4A510BC41DFB9256005B9DB9 /* AViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AViewController.h; sourceTree = ""; }; 35 | 4A510BC51DFB9256005B9DB9 /* AViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AViewController.m; sourceTree = ""; }; 36 | 4A510BC71DFB925E005B9DB9 /* BViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BViewController.h; sourceTree = ""; }; 37 | 4A510BC81DFB925E005B9DB9 /* BViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BViewController.m; sourceTree = ""; }; 38 | BC0B2024D7061067AECDBCA4 /* libPods-MainProject.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MainProject.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | /* End PBXFileReference section */ 40 | 41 | /* Begin PBXFrameworksBuildPhase section */ 42 | 4A510BA51DFB91AF005B9DB9 /* Frameworks */ = { 43 | isa = PBXFrameworksBuildPhase; 44 | buildActionMask = 2147483647; 45 | files = ( 46 | 659621CADA0A93D59DD76310 /* libPods-MainProject.a in Frameworks */, 47 | ); 48 | runOnlyForDeploymentPostprocessing = 0; 49 | }; 50 | /* End PBXFrameworksBuildPhase section */ 51 | 52 | /* Begin PBXGroup section */ 53 | 4A510B9F1DFB91AF005B9DB9 = { 54 | isa = PBXGroup; 55 | children = ( 56 | 4A510BAA1DFB91B0005B9DB9 /* MainProject */, 57 | 4A510BA91DFB91B0005B9DB9 /* Products */, 58 | FDAB92F25041AC2D87DFB2DA /* Pods */, 59 | FF6B7731E91A54EFFFEB8C06 /* Frameworks */, 60 | ); 61 | sourceTree = ""; 62 | }; 63 | 4A510BA91DFB91B0005B9DB9 /* Products */ = { 64 | isa = PBXGroup; 65 | children = ( 66 | 4A510BA81DFB91B0005B9DB9 /* MainProject.app */, 67 | ); 68 | name = Products; 69 | sourceTree = ""; 70 | }; 71 | 4A510BAA1DFB91B0005B9DB9 /* MainProject */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 4A510BC31DFB924C005B9DB9 /* AViewController */, 75 | 4A510BC21DFB924C005B9DB9 /* BViewController */, 76 | 4A510BAE1DFB91B0005B9DB9 /* AppDelegate.h */, 77 | 4A510BAF1DFB91B0005B9DB9 /* AppDelegate.m */, 78 | 4A510BB11DFB91B0005B9DB9 /* ViewController.h */, 79 | 4A510BB21DFB91B0005B9DB9 /* ViewController.m */, 80 | 4A510BB41DFB91B0005B9DB9 /* Main.storyboard */, 81 | 4A510BB71DFB91B0005B9DB9 /* Assets.xcassets */, 82 | 4A510BB91DFB91B0005B9DB9 /* LaunchScreen.storyboard */, 83 | 4A510BBC1DFB91B0005B9DB9 /* Info.plist */, 84 | 4A510BAB1DFB91B0005B9DB9 /* Supporting Files */, 85 | ); 86 | path = MainProject; 87 | sourceTree = ""; 88 | }; 89 | 4A510BAB1DFB91B0005B9DB9 /* Supporting Files */ = { 90 | isa = PBXGroup; 91 | children = ( 92 | 4A510BAC1DFB91B0005B9DB9 /* main.m */, 93 | ); 94 | name = "Supporting Files"; 95 | sourceTree = ""; 96 | }; 97 | 4A510BC21DFB924C005B9DB9 /* BViewController */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 4A510BC71DFB925E005B9DB9 /* BViewController.h */, 101 | 4A510BC81DFB925E005B9DB9 /* BViewController.m */, 102 | ); 103 | path = BViewController; 104 | sourceTree = ""; 105 | }; 106 | 4A510BC31DFB924C005B9DB9 /* AViewController */ = { 107 | isa = PBXGroup; 108 | children = ( 109 | 4A510BC41DFB9256005B9DB9 /* AViewController.h */, 110 | 4A510BC51DFB9256005B9DB9 /* AViewController.m */, 111 | ); 112 | path = AViewController; 113 | sourceTree = ""; 114 | }; 115 | FDAB92F25041AC2D87DFB2DA /* Pods */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 4732F0A38173004B46459775 /* Pods-MainProject.debug.xcconfig */, 119 | 4003BDE36800E7259021C8F5 /* Pods-MainProject.release.xcconfig */, 120 | ); 121 | name = Pods; 122 | sourceTree = ""; 123 | }; 124 | FF6B7731E91A54EFFFEB8C06 /* Frameworks */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | BC0B2024D7061067AECDBCA4 /* libPods-MainProject.a */, 128 | ); 129 | name = Frameworks; 130 | sourceTree = ""; 131 | }; 132 | /* End PBXGroup section */ 133 | 134 | /* Begin PBXNativeTarget section */ 135 | 4A510BA71DFB91AF005B9DB9 /* MainProject */ = { 136 | isa = PBXNativeTarget; 137 | buildConfigurationList = 4A510BBF1DFB91B0005B9DB9 /* Build configuration list for PBXNativeTarget "MainProject" */; 138 | buildPhases = ( 139 | 4642BF9F2221A8232497CFB2 /* [CP] Check Pods Manifest.lock */, 140 | 4A510BA41DFB91AF005B9DB9 /* Sources */, 141 | 4A510BA51DFB91AF005B9DB9 /* Frameworks */, 142 | 4A510BA61DFB91AF005B9DB9 /* Resources */, 143 | F03BBC448BC84BE066021C1C /* [CP] Embed Pods Frameworks */, 144 | BF6D1512E93C218936BD9A05 /* [CP] Copy Pods Resources */, 145 | ); 146 | buildRules = ( 147 | ); 148 | dependencies = ( 149 | ); 150 | name = MainProject; 151 | productName = MainProject; 152 | productReference = 4A510BA81DFB91B0005B9DB9 /* MainProject.app */; 153 | productType = "com.apple.product-type.application"; 154 | }; 155 | /* End PBXNativeTarget section */ 156 | 157 | /* Begin PBXProject section */ 158 | 4A510BA01DFB91AF005B9DB9 /* Project object */ = { 159 | isa = PBXProject; 160 | attributes = { 161 | LastUpgradeCheck = 0810; 162 | ORGANIZATIONNAME = casa; 163 | TargetAttributes = { 164 | 4A510BA71DFB91AF005B9DB9 = { 165 | CreatedOnToolsVersion = 8.1; 166 | ProvisioningStyle = Automatic; 167 | }; 168 | }; 169 | }; 170 | buildConfigurationList = 4A510BA31DFB91AF005B9DB9 /* Build configuration list for PBXProject "MainProject" */; 171 | compatibilityVersion = "Xcode 3.2"; 172 | developmentRegion = English; 173 | hasScannedForEncodings = 0; 174 | knownRegions = ( 175 | en, 176 | Base, 177 | ); 178 | mainGroup = 4A510B9F1DFB91AF005B9DB9; 179 | productRefGroup = 4A510BA91DFB91B0005B9DB9 /* Products */; 180 | projectDirPath = ""; 181 | projectRoot = ""; 182 | targets = ( 183 | 4A510BA71DFB91AF005B9DB9 /* MainProject */, 184 | ); 185 | }; 186 | /* End PBXProject section */ 187 | 188 | /* Begin PBXResourcesBuildPhase section */ 189 | 4A510BA61DFB91AF005B9DB9 /* Resources */ = { 190 | isa = PBXResourcesBuildPhase; 191 | buildActionMask = 2147483647; 192 | files = ( 193 | 4A510BBB1DFB91B0005B9DB9 /* LaunchScreen.storyboard in Resources */, 194 | 4A510BB81DFB91B0005B9DB9 /* Assets.xcassets in Resources */, 195 | 4A510BB61DFB91B0005B9DB9 /* Main.storyboard in Resources */, 196 | ); 197 | runOnlyForDeploymentPostprocessing = 0; 198 | }; 199 | /* End PBXResourcesBuildPhase section */ 200 | 201 | /* Begin PBXShellScriptBuildPhase section */ 202 | 4642BF9F2221A8232497CFB2 /* [CP] Check Pods Manifest.lock */ = { 203 | isa = PBXShellScriptBuildPhase; 204 | buildActionMask = 2147483647; 205 | files = ( 206 | ); 207 | inputPaths = ( 208 | ); 209 | name = "[CP] Check Pods Manifest.lock"; 210 | outputPaths = ( 211 | ); 212 | runOnlyForDeploymentPostprocessing = 0; 213 | shellPath = /bin/sh; 214 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; 215 | showEnvVarsInLog = 0; 216 | }; 217 | BF6D1512E93C218936BD9A05 /* [CP] Copy Pods Resources */ = { 218 | isa = PBXShellScriptBuildPhase; 219 | buildActionMask = 2147483647; 220 | files = ( 221 | ); 222 | inputPaths = ( 223 | ); 224 | name = "[CP] Copy Pods Resources"; 225 | outputPaths = ( 226 | ); 227 | runOnlyForDeploymentPostprocessing = 0; 228 | shellPath = /bin/sh; 229 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-resources.sh\"\n"; 230 | showEnvVarsInLog = 0; 231 | }; 232 | F03BBC448BC84BE066021C1C /* [CP] Embed Pods Frameworks */ = { 233 | isa = PBXShellScriptBuildPhase; 234 | buildActionMask = 2147483647; 235 | files = ( 236 | ); 237 | inputPaths = ( 238 | ); 239 | name = "[CP] Embed Pods Frameworks"; 240 | outputPaths = ( 241 | ); 242 | runOnlyForDeploymentPostprocessing = 0; 243 | shellPath = /bin/sh; 244 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-frameworks.sh\"\n"; 245 | showEnvVarsInLog = 0; 246 | }; 247 | /* End PBXShellScriptBuildPhase section */ 248 | 249 | /* Begin PBXSourcesBuildPhase section */ 250 | 4A510BA41DFB91AF005B9DB9 /* Sources */ = { 251 | isa = PBXSourcesBuildPhase; 252 | buildActionMask = 2147483647; 253 | files = ( 254 | 4A510BC61DFB9256005B9DB9 /* AViewController.m in Sources */, 255 | 4A510BB31DFB91B0005B9DB9 /* ViewController.m in Sources */, 256 | 4A510BB01DFB91B0005B9DB9 /* AppDelegate.m in Sources */, 257 | 4A510BC91DFB925E005B9DB9 /* BViewController.m in Sources */, 258 | 4A510BAD1DFB91B0005B9DB9 /* main.m in Sources */, 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXSourcesBuildPhase section */ 263 | 264 | /* Begin PBXVariantGroup section */ 265 | 4A510BB41DFB91B0005B9DB9 /* Main.storyboard */ = { 266 | isa = PBXVariantGroup; 267 | children = ( 268 | 4A510BB51DFB91B0005B9DB9 /* Base */, 269 | ); 270 | name = Main.storyboard; 271 | sourceTree = ""; 272 | }; 273 | 4A510BB91DFB91B0005B9DB9 /* LaunchScreen.storyboard */ = { 274 | isa = PBXVariantGroup; 275 | children = ( 276 | 4A510BBA1DFB91B0005B9DB9 /* Base */, 277 | ); 278 | name = LaunchScreen.storyboard; 279 | sourceTree = ""; 280 | }; 281 | /* End PBXVariantGroup section */ 282 | 283 | /* Begin XCBuildConfiguration section */ 284 | 4A510BBD1DFB91B0005B9DB9 /* Debug */ = { 285 | isa = XCBuildConfiguration; 286 | buildSettings = { 287 | ALWAYS_SEARCH_USER_PATHS = NO; 288 | CLANG_ANALYZER_NONNULL = YES; 289 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 290 | CLANG_CXX_LIBRARY = "libc++"; 291 | CLANG_ENABLE_MODULES = YES; 292 | CLANG_ENABLE_OBJC_ARC = YES; 293 | CLANG_WARN_BOOL_CONVERSION = YES; 294 | CLANG_WARN_CONSTANT_CONVERSION = YES; 295 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 296 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 297 | CLANG_WARN_EMPTY_BODY = YES; 298 | CLANG_WARN_ENUM_CONVERSION = YES; 299 | CLANG_WARN_INFINITE_RECURSION = YES; 300 | CLANG_WARN_INT_CONVERSION = YES; 301 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 302 | CLANG_WARN_SUSPICIOUS_MOVES = YES; 303 | CLANG_WARN_UNREACHABLE_CODE = YES; 304 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 305 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 306 | COPY_PHASE_STRIP = NO; 307 | DEBUG_INFORMATION_FORMAT = dwarf; 308 | ENABLE_STRICT_OBJC_MSGSEND = YES; 309 | ENABLE_TESTABILITY = YES; 310 | GCC_C_LANGUAGE_STANDARD = gnu99; 311 | GCC_DYNAMIC_NO_PIC = NO; 312 | GCC_NO_COMMON_BLOCKS = YES; 313 | GCC_OPTIMIZATION_LEVEL = 0; 314 | GCC_PREPROCESSOR_DEFINITIONS = ( 315 | "DEBUG=1", 316 | "$(inherited)", 317 | ); 318 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 319 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 320 | GCC_WARN_UNDECLARED_SELECTOR = YES; 321 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 322 | GCC_WARN_UNUSED_FUNCTION = YES; 323 | GCC_WARN_UNUSED_VARIABLE = YES; 324 | IPHONEOS_DEPLOYMENT_TARGET = 10.1; 325 | MTL_ENABLE_DEBUG_INFO = YES; 326 | ONLY_ACTIVE_ARCH = YES; 327 | SDKROOT = iphoneos; 328 | TARGETED_DEVICE_FAMILY = "1,2"; 329 | }; 330 | name = Debug; 331 | }; 332 | 4A510BBE1DFB91B0005B9DB9 /* Release */ = { 333 | isa = XCBuildConfiguration; 334 | buildSettings = { 335 | ALWAYS_SEARCH_USER_PATHS = NO; 336 | CLANG_ANALYZER_NONNULL = YES; 337 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 338 | CLANG_CXX_LIBRARY = "libc++"; 339 | CLANG_ENABLE_MODULES = YES; 340 | CLANG_ENABLE_OBJC_ARC = YES; 341 | CLANG_WARN_BOOL_CONVERSION = YES; 342 | CLANG_WARN_CONSTANT_CONVERSION = YES; 343 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 344 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 345 | CLANG_WARN_EMPTY_BODY = YES; 346 | CLANG_WARN_ENUM_CONVERSION = YES; 347 | CLANG_WARN_INFINITE_RECURSION = YES; 348 | CLANG_WARN_INT_CONVERSION = YES; 349 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 350 | CLANG_WARN_SUSPICIOUS_MOVES = YES; 351 | CLANG_WARN_UNREACHABLE_CODE = YES; 352 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 353 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 354 | COPY_PHASE_STRIP = NO; 355 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 356 | ENABLE_NS_ASSERTIONS = NO; 357 | ENABLE_STRICT_OBJC_MSGSEND = YES; 358 | GCC_C_LANGUAGE_STANDARD = gnu99; 359 | GCC_NO_COMMON_BLOCKS = YES; 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 = 10.1; 367 | MTL_ENABLE_DEBUG_INFO = NO; 368 | SDKROOT = iphoneos; 369 | TARGETED_DEVICE_FAMILY = "1,2"; 370 | VALIDATE_PRODUCT = YES; 371 | }; 372 | name = Release; 373 | }; 374 | 4A510BC01DFB91B0005B9DB9 /* Debug */ = { 375 | isa = XCBuildConfiguration; 376 | baseConfigurationReference = 4732F0A38173004B46459775 /* Pods-MainProject.debug.xcconfig */; 377 | buildSettings = { 378 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 379 | INFOPLIST_FILE = MainProject/Info.plist; 380 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 381 | PRODUCT_BUNDLE_IDENTIFIER = casa.MainProject; 382 | PRODUCT_NAME = "$(TARGET_NAME)"; 383 | }; 384 | name = Debug; 385 | }; 386 | 4A510BC11DFB91B0005B9DB9 /* Release */ = { 387 | isa = XCBuildConfiguration; 388 | baseConfigurationReference = 4003BDE36800E7259021C8F5 /* Pods-MainProject.release.xcconfig */; 389 | buildSettings = { 390 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 391 | INFOPLIST_FILE = MainProject/Info.plist; 392 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 393 | PRODUCT_BUNDLE_IDENTIFIER = casa.MainProject; 394 | PRODUCT_NAME = "$(TARGET_NAME)"; 395 | }; 396 | name = Release; 397 | }; 398 | /* End XCBuildConfiguration section */ 399 | 400 | /* Begin XCConfigurationList section */ 401 | 4A510BA31DFB91AF005B9DB9 /* Build configuration list for PBXProject "MainProject" */ = { 402 | isa = XCConfigurationList; 403 | buildConfigurations = ( 404 | 4A510BBD1DFB91B0005B9DB9 /* Debug */, 405 | 4A510BBE1DFB91B0005B9DB9 /* Release */, 406 | ); 407 | defaultConfigurationIsVisible = 0; 408 | defaultConfigurationName = Release; 409 | }; 410 | 4A510BBF1DFB91B0005B9DB9 /* Build configuration list for PBXNativeTarget "MainProject" */ = { 411 | isa = XCConfigurationList; 412 | buildConfigurations = ( 413 | 4A510BC01DFB91B0005B9DB9 /* Debug */, 414 | 4A510BC11DFB91B0005B9DB9 /* Release */, 415 | ); 416 | defaultConfigurationIsVisible = 0; 417 | }; 418 | /* End XCConfigurationList section */ 419 | }; 420 | rootObject = 4A510BA01DFB91AF005B9DB9 /* Project object */; 421 | } 422 | --------------------------------------------------------------------------------