#import "ViewController.h"
//协议
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
/*______ UITableView 表视图 _____________________________________________*/
//1.创建: frame style
/**
UITableViewStylePlain, 表示单元格不分组
UITableViewStyleGrouped 表示单元格分组
*/
//不知道怎么分组
UITableView *tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
//2.属性
tableView.dataSource = self;
tableView.delegate = self;
//3.方法
//4.显示
[self.view addSubview:tableView];
}
#pragma mark - UITableViewDataSource 数据源协议方法
//返回 每一组有多少个单元格
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 50;
}
//返回 每一个单元格的内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//1.创建 单元格
UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
//2.设置单元格的相关内容 --> 参考 NSIndexPath section:组下标 row:行下标
cell.textLabel.text = [NSString stringWithFormat:@"section:%ld - row:%ld ",indexPath.section,indexPath.row];
//3.返回单元格
return cell;
}
@end
plain //平原 代表不分组
grouped //分组
dataSource //数据源
delegate //代表 代理
count //计数
Day.03.03 UITableView 基础
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...