标签:代码 获取 pretty 封装 undle ios bundle one .text
对于UITableView的知识点特别多,因为它是iOS用得最多控件之一,我会尽我最大努力和语言的组织,将所有知识点介绍到位,今天要实现的效果图
吐槽
知识点包括
1、准备数据源(plist)
2、布局文件
分析plist数据的格式,然后创建对应的对象模型,并提供相应的初始化方法,这是mvc中经典的一个步骤
@interface HeroModel : NSObject
@property(nonatomic,strong) NSString *icon;
@property(nonatomic,strong) NSString *intro;
@property(nonatomic,strong) NSString *name;
-(instancetype)initWithDict:(NSDictionary *)dict;
+(instancetype)HeroModelWithDict:(NSDictionary *)dict;
@end
在m文件中实现初始化方法,方法中实现字典转换为对象
@implementation HeroModel
-(instancetype)initWithDict:(NSDictionary *)dict{
if(self = [super init]){
[self setValuesForKeysWithDictionary:dict];
}
return self;
}
+(instancetype)HeroModelWithDict:(NSDictionary *)dict{
return [[self alloc]initWithDict:dict];
}
@end
1、声明委托代理,声明属性
要想UITableView有数据,那么就必须通过它的委托代理方法才能显示UITableView中的数据
@interface ViewController ()<UITableViewDataSource>
//存放数据的可变数组
@property (strong, nonatomic) NSMutableArray *dataArray;
//tableview
@property (strong, nonatomic) IBOutlet UITableView *tableView;
@end
2、实现属性的转换
毫无疑问是通过懒加载将plist的内容转为模型存进我们声明的可变数组中
#pragma 复写get方法
#pragma 懒加载,读取plist文件并转换为模型
- (NSMutableArray *)dataArray{
if(nil == _dataArray){
//初始化数组
_dataArray = [NSMutableArray array];
//获取plist文件路径
NSString *path = [[NSBundle mainBundle]pathForResource:@"heros.plist" ofType:nil];
//读取plist文件内容
NSArray *tempArray = [NSArray arrayWithContentsOfFile:path];
//遍历plist文件内容,存到可变数组中
for (NSDictionary * dict in tempArray) {
HeroModel *heroModel = [HeroModel HeroModelWithDict:dict];
[_dataArray addObject:heroModel];
}
}
//返回
return _dataArray;
}
3、交付委托
//交付委托
_tableView.dataSource = self;
4、实现代理的方法
通过实现UITableViewDataSource代理的方法,来显示数据,类似于ListView的Adapter
#pragma UITableViewDataSource委托方法
#pragma 返回一共有多少组
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
//默认返回1组
return 1;
}
#pragma UITableViewDataSource委托方法
#pragma 返回一个组由多少行
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
//返回数据的数量
return self.dataArray.count;
}
#pragma UITableViewDataSource委托方法
#pragma 返回每一行Item的内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//创建tableview的item
UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:nil];
//通过indexPath的行属性,取出对应的模型
HeroModel *heroModel = _dataArray[indexPath.row];
//设置文本信息
cell.textLabel.text = heroModel.name;
//设置图片信息
UIImage *image = [UIImage imageNamed:heroModel.icon];
cell.imageView.image = image;
//设置详细信息文本
cell.detailTextLabel.text = heroModel.intro;
//设置最右边的箭头
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
//返回
return cell;
}
① UITableView的显示有两种方式,在storyboard中可以设置
1.plain:数据平铺显示,中间没有空隙,数组的头标题有悬浮效果
2.group:数据分组显示,中间留有空隙
② UITableViewDataSource的委托方法,程序会按以下顺序执行
③ UITableViewCell的四种样式
1.UITableViewCellStyleDefault
2.UITableViewCellStyleValue1
3.UITableViewCellStyleValue2
4.UITableViewCellStyleSubtitle
④ cell.accessoryType的五种样式,用得不多就不解释了
5、UITableViewDataSource其他代理方法
这两个代理方法会在group样式上展示得比较清晰
#pragma UITableViewDataSource委托方法
#pragma 返回tableview中头部的标题
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
return @"header";
}
#pragma UITableViewDataSource委托方法
#pragma 返回tableview中底部的标题
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
return @"footer";
}
6、cell的重用
//重用标识符,需要用static修饰,避免多次分配内存给NSString
static NSString *identifier = @"h1";
//从缓存池中取出tableview的item
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
//创建cell
if(nil == cell){
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];
}
7、tableView的属性介绍
8、实现cell的点击事件
① 声明委托与交付委托
cell的点击事件是在UITableViewDelegate的实现方法
//声明委托
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>
//交付委托
_tableView.delegate = self;
② 实现点击事件函数
#pragma UITableViewDelegate委托方法
#pragma 反选数据时调用
-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
}
#pragma UITableViewDelegate委托方法
#pragma 选择数据时调用
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
}
9、实现cell的编辑模式和cell的增加插入
cell的编辑模式和cell的增加插入也是在UITableViewDelegate的实现方法
#pragma UITableViewDelegate委托方法
#pragma 决定哪一行可进入编辑模式
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{
if(indexPath.row == 2){
return NO;
}else{
return YES;
}
}
#pragma UITableViewDelegate委托方法
#pragma 点击delete和insert的回调函数,该函数同时回开启侧滑删除功能
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if(editingStyle == UITableViewCellEditingStyleDelete){
//删除数组中的数据
[_dataArray removeObjectAtIndex:indexPath.row];
//tableview完成删除操作,更新UI
[_tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
}else if(editingStyle == UITableViewCellEditingStyleInsert){
//模拟添加数据
HeroModel *hero = [[HeroModel alloc]init];
hero.name = @"寒冰射手";
//添加到数组中
[_dataArray insertObject:hero atIndex:indexPath.row];
//tableview完成添加操作,更新UI
[_tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationRight];
}
}
#pragma UITableViewDelegate委托方法
#pragma 决定哪一行开启的编辑模式是插入模式还是删除模式
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
if(indexPath.row <= 5){
return UITableViewCellEditingStyleInsert;
}else{
return UITableViewCellEditingStyleDelete;
}
}
#pragma UITableViewDelegate委托方法
#pragma 删除模式下的删除按钮文字显示
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
return @"蹦瞎卡拉卡";
}
① UITableViewDelegate的委托方法
② indexPath属性
③ 编辑模式动画,大家看名字应该都可以猜得出
④ 最后只要开启编辑模式
_tableView.editing = YES;
学习过一次UITableView之后,最遗憾的就是没有能够记住其方法名,只是记住一部分单词而已,当然,这些都是熟能生巧的事情。对于UITableView的知识点还有很多,这里只是其中一部分,后面我会陆续推出UITableView的用法
标签:代码 获取 pretty 封装 undle ios bundle one .text
原文地址:http://blog.csdn.net/qq_30379689/article/details/60586387