NSDictionary *dic1 = [NSDictionary dictionaryWithObjectsAndKeys:@"lisi",@"name",@"nan",...
#if 0 //字典:用来存储具有以一一对应关系的数据,本质上也是一个大容器 //自定义初始化方式 NSDictionary *dic = [[NSDictionary al...
/* 数组 系统提供的数组类:类似于C语言中的数组功能 数组是一个大容器,数组中可以存储不同类型的对象,但必须要保证数组中存储的都是对象 OC中提供了两类数组:一类是NSAr...
// main.m //一: 字符串的创建 //第一种方式 char a[] = "lanOu"; //initWithUTF8String:将C语言...
- (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteCo...
//UIViewController 视图控制器 //抽象类:不能直接通过创建使用创建对象 需要定义该类的子类 然后在创建对象使用 //创建vc对象 // UIViewCo...
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.win...
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.win...
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.win...
self.view.backgroundColor = [UIColor whiteColor]; //UIGestureRecognizer 手势识别器 //手势: 有规律...
self.view.backgroundColor = [UIColor whiteColor]; //UIControl 控制类 //addTarget:action:fo...