美文网首页
代码创建tableView

代码创建tableView

作者: 白日一山 | 来源:发表于2016-11-30 14:04 被阅读0次
    @property (strong,nonatomic) UITableView *tableView;
     <UITableViewDelegate,UITableViewDataSource>
    
    - (void)initTableView{
    _tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 297, ScrrenWidth,ScrrenHeight-300) style:UITableViewStylePlain];
    _tableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
    _tableView.backgroundColor = [UIColor colorWithWhite:1.000 alpha:1];
    _tableView.dataSource = self;
    _tableView.delegate = self;
    _tableView.rowHeight = 140;
    _tableView.sectionHeaderHeight = 50;
    _tableView.indicatorStyle = UITableViewStyleGrouped;
    _tableView.contentInset = UIEdgeInsetsMake(0, 0, 10, 0);
    
        [self.view addSubview:_tableView];
    }
    
    -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
            return 10;
    }
    
    -(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 = [NSString stringWithFormat:@"%ld",indexPath.row];
    cell.textLabel.font = [UIFont systemFontOfSize:16.0f];
    cell.accessoryType = UITableViewCellAccessoryNone;
    cell.selectionStyle = UITableViewCellSelectionStyleGray;
    return cell;
    
    }

    相关文章

      网友评论

          本文标题:代码创建tableView

          本文链接:https://www.haomeiwen.com/subject/zwhtmttx.html