导航控制器和表视图(一)
约 141 字
预计阅读 1 分钟
次阅读
导航控制器和表视图(一)
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
|
UINavigationController 导航控制器
accessoryType 附件类型
navigationController 导航控制器属性
pushViewController: 入栈方法
viewWillAppear: 视图出现时加载
NSIndexPath 属性,索引路径
UITableViewCellAccessoryCheckmark 属性,检查标记(对勾)
UITableViewCellAccessoryNone 属性,无标记
deselectRowAtIndexPath 取消选中某行
buttonWithType 按钮格式
setBackgroundImage 设置背景图片
addTarget 添加目标
forControlEvents 按钮事件
accessoryView 附加视图
buttonTapped: 轻击按钮
|