本Xcode版本 Version 7.3.1 (7D1014)
1.打开Xcode
2.点击Create a new Xcode project // 新建新项目
3.点击左边IOS栏目下的Application -> Single View Application -> Next
4.Product Name 项目名称 Text(一定要填英文我也不知道为什么),Organization Name 开发者名称 Organization Identifier 开发标识 Language 开发语言这里选择 Objective-C,Devices 设备Universal 下面三个全打勾就行了。
5.Next -> 选择存储目录 -> Create
6.删除用SB开发的界面文件 Main.storyboard 和 LaunchScreen.storyboard,右键Delete -> Move to Trash 直接扔垃圾桶
7.然后点击最顶部的项目名称,找到右边Deployment Info里的Main Interface 把里面的Main删除掉就行了。
8.接下来就开始码代码了 点击AppDelegate.m文件,
先把ViewController的头文件写上
然后在里面可以找到
- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
// Override point for customization after application launch.
returnYES;
}
把以下代码复制进去
- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
ViewController *controller = [[ViewController alloc] init];
//UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:controller];
self.window.rootViewController = controller;
[self.window makeKeyAndVisible];
returnYES;
}
复制完后就可以 在viewcontroller.m里面写自己想添加的控件以及其他东西啦~
网友评论