标签:
今天学习的主要内容:
拆装箱://把基本数据类型转成对象类型(对象前加*),把数组中的数取出来,把结构体转成对象类型(结构体前不用加*)。
应用程序生命周期:
第一次运行起来:
1.已经运行完成 2.已经激活
按大饼退出:
1.将要失去激活 2.已经进入后台
按两下大饼返回:
1.将要进入前台 2.已经激活
UIView 的常见用法:
superView 得到某个控件的父视图
subView 得到所有的子视图
addSubView 添加子视图
insertSubView 插入子视图,可以把某个子视图添加到指定的位置
removeFromSuperview 删除
[self.view bringSubviewToFront:l];把某个子视图带到最前端显示。
[self.view exchangeSubviewAtIndex:2 withSubviewIndex:3] 交换子视图2和3的显示位置
[v.alpha] 修改控件的透明度
v.hidden = YES 隐藏控件
v.backgroundColor 背景颜色
?创建页面两种方法:
1通过代码创建页面,和storyboard无关;
SecondViewController *vc = [[SecondViewController alloc]init];
2,通过storyboard创建页面,和storyboard有关
SecondViewController *vc = [self.storyboardinstantiateViewControllerWithIdentifier:@"secondvc"];
跳转到 某一个页面
[self presentViewController:vc animated:YES completion:nil];
从某一个页面返回
[self dismissViewControllerAnimated:YES completion:nil];
标签:
原文地址:http://www.cnblogs.com/stuyingiOS/p/4783845.html