07-UIKit(tableview的编辑模式、accessoryView)
目录:
一、tableview的编辑模式-增删改查
[1-contact-edit]
增:
1对数据模型增加数据
self.contacts addObject:
2对tableview增加行
self.tableView insertRowsAtIndexPaths
删改查:
tableview进入编辑模式
1如何设置编辑模式UITableView.editing
2能干什么:添加、删除、移动
这些都是对cell进行的操作
3进入编辑模式的快捷方式是把viewDidLoad中的self.editButtonItem显示出来,一旦按了按钮,tableview就会进入编辑模式,默认情况下是删除模式
4如果需要达到删除的效果需要进行两问一响应,两个问题可以不回答,但必须有响应
两问:
1)第一问哪些行可以进行编辑,哪些不能
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
2)第二问哪些行可以进行删除,哪些行可以进行插入
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
3)一响应当用户选择了行进行删除或插入,如何处理
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
二、不使用继承创建tableview
[2-tableView]
并提供三问一响应的链接dataSource和delegate到要提供数据的viewcontroller,这个viewcontroller要遵守detaSource这个协议
- (void)viewDidLoad
{
[super viewDidLoad];
UITableView *tableView =
[[UITableView alloc] init];
tableView.frame =
CGRectMake(160, 42, 122, 322);
tableView.dataSource =
self;
[self.view addSubview:tableView];
// Do any additional setup after loading the view, typically from a
nib.
}
静态的tableview
分区和行数都是固定的,如果用代码实现都是直接写死的。
三、accessoryView辅助视图
是tableview中cell的子试图中的一个,
有哪些类型:iOS6之前有4种iOS7增加了一种,
干什么用呢?触发高级事件
//返回cell数据
-
(UITableViewCell*)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static
NSString *cellIdentifier = @"Cell";
UITableViewCell *cell
= [tableView
dequeueReusableCellWithIdentifier:cellIdentifier];
if
(cell == nil) {
cell =
[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:cellIdentifier];
}
cell.textLabel.text = @"ddd";
//设置辅助视图
也就是cell右边的那个视图
if (indexPath.row ==
0) {
//开关
cell.accessoryView
= [[UISwitch alloc] init];
}else{
cell.accessoryType
= UITableViewCellAccessoryDetailButton;
}
return cell;
}
//点击cell之后调用的方法
-
(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
*)indexPath{
NSLog(@"+++");
}
//点击辅助视图调用的方法
-
(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath
*)indexPath{
NSLog(@"---");
}
作业:
1. 在一个界面上有两个TableView, 其中一个显示城市列表,如:北京,上海, 广州..,另一个显示用户选中的那个城市的行政区列表,如: 东城,西城,…, 当用户选中了某个行政区,界面上的一个TextView就显示此行政区的简介。
数据模型自己设计。
2. TMusic的设置界面,根据给的资源包高仿QQ音乐的设置界面。
补充:
UI控件用weak,NSString用copy,其他对象一般用strong
tableviewcell的高度有一个代理方法来调
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
字符串追加
cell.detailTextLabel.text = [[contact.phoneName stringByAppendingString:@"\t"] stringByAppendingString:contact.iphone];
//更新界面
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:self.contacts.count -1 inSection:0];
[self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。