UITableView设置行与行之间的距离


这只是设置行间距的一个方法。可以参考一下

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row % 2 == 0) { //判断奇数偶数行,奇数行为空格
        CGRect rect = [[UIScreen mainScreen] bounds];//获得系统屏幕大小
        CGSize size = CGSizeMake(rect.size.width, 52.0f);//设置行的高度
        return size.height;
    }else{
        CGRect rect = [[UIScreen mainScreen] bounds];
        CGSize size = CGSizeMake(rect.size.width, 10.0f);//设置空行的高度
        return size.height;
    }
    
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (indexPath.row % 2 == 0) { //判别奇偶行
        //设置cell值
    }else{
       //设置空值
    }
    return cell;
}

当然要注意返回的行列值也应该2倍的数据行减去1

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
     return 数据行*2-1;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值