<UITableViewDataSource,UITableViewDelegate>
@property(nonatomic,strong)UITableView*tableView;
@property(nonatomic,strong)NSMutableArray*dataArray;
@property(nonatomic,strong)UIImageView*bgImageView;
- (void)viewDidLoad {
[super viewDidLoad];
_dataArray = [NSMutableArray arrayWithCapacity:0];
[self makeUI];
}
-(void)makeUI
{
_bgImageView = [[UIImageView alloc]initWithFrame:self.view.frame];
_bgImageView.backgroundColor = [UIColor grayColor];
_tableView = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStylePlain];
_tableView.delegate = self;
_tableView.dataSource = self;
_tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
[self.view addSubview:_tableView];
}
#pragma mark - 段数
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
#pragma mark - 每段行数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 6;
//return self.dataArray.count;
}
#pragma mark - 行高
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 50;
}
#pragma mark - 设置cell
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell*cell = [tableView dequeueReusableCellWithIdentifier:@"ID"];
if (!cell)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"ID"];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
return cell;
}
#pragma mark - 点击cell
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"%ld段 %ld行",(long)indexPath.section,(long)indexPath.row);
}