iOS 第一个程序 --- Hello World!(纯代码)
App 创建好 如下图
1.删掉 不用文件
2.删除 选择 "Move to Trash"(移到废纸篓) 代表彻底删除
"Remove References" (删除引用)
3.找到"info.plist"文件 点开
4.删除 "Launch screen interface file base name" 和 "Main storyboard file base name" 点击 名字旁 "-" 即删除。或者选择 Command + Delete 删除
5. 打开 AppDelegate.m 文件 引用用来显示 试图的ViewController.h 文件
#import "ViewController.h"
6. 在"- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions" 方法下 写
_window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
_window.backgroundColor = [UIColor whiteColor];
_window.rootViewController = [[ViewController alloc]init];
[_window makeKeyAndVisible];
如下图
7. 在Viewcontroller.m 的 "- (void)viewDidLoad "方法下 写
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 20)]; // 数字的顺序是 x, y ,宽度,高度
label.text=@"啦啦啦";// 文本内容
label.font = [UIFont systemFontOfSize:14];// 字体大小
label.textColor = [UIColor redColor]; // 文本颜色
[self.viewaddSubview:label];
如下图
运行程序。效果 图如下
这时发现 显示效果 不理想。原因 是没有做屏幕适配 (等下写最简单的适配方法)