标签:android style blog http color strong
UITableView 类比android的ListView,指的是拥有相同视图不同数据的列表.例如微信的联系人列表
1.UITableViewDelegate,UITableViewDataSource分别为UITableView的数据与行为的代理.
也就是UITableView本身什么都不干,他的数据加载由<UITableViewDataSource>来实现,而行为由<UITableViewDelegate>来实现.
2.UITableView的列表分为两种形式,一种是plain(单列表)形式,一种是Group(列表组)形式.
Group Plain
当为单组列表时,返回1 当为多组列表时,返回>1的数字
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
根据section为返回的组数判断.返回每组的列数
-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section;
这里有几个术语需要解释
Section:组数或者列数
indexPath:indexPath.row表示某组的列数
indexPath.section 表示组数
3.如何显示列表呢?做过Android-ListView的都知道,该列表的adapter里面实现了视图缓存,某个item只在第一次创建,以后的工作只是重复赋值.在ios中,返回的每个item为UITableViewCell及其子类
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
IOS-UITableView入门(1),布布扣,bubuko.com
标签:android style blog http color strong
原文地址:http://blog.csdn.net/qq285016127/article/details/36014891