美文网首页码农的世界iOS Developer
iOS UITableView适配 那些坑

iOS UITableView适配 那些坑

作者: 蓝色小石头 | 来源:发表于2016-11-15 14:38 被阅读198次

    1. 消除多余的行

    tableView.tableFooterView = [[UIView alloc]init];
    

    2. 分割线缩进为0即分割线两边顶到头

    如果你有兴趣了解下面iOS8新特性可以看看由Chun发表于Chun Tips的文章 这里,或者狂灬的草人的文章这里

    cell.separatorInset = UIEdgeInsetsZero;   // iOS7 
    cell.preservesSuperviewLayoutMargins = NO;  // iOS8 +
    cell.layoutMargins = UIEdgeInsetsZero;  // iOS8 +
    

    3. 取消Cell的选中

    一般用在didSelectRowAtIndexPath方法里,此方法不会引起调用
    tableView:willSelectRowAtIndexPath:
    tableView:didSelectRowAtIndexPath:

     [tableView deselectRowAtIndexPath:indexPath animated:YES];
    

    4. 利用SDWebImage自适应图片高度

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {  
        // 先从缓存中查找图片  
        UIImage *image = [[SDImageCache sharedImageCache] imageFromDiskCacheForKey: self.imgArray[indexPath.row]];  
          
        // 没有找到已下载的图片就使用默认的占位图,当然高度也是默认的高度了,除了高度不固定的文字部分。  
        if (!image) {  
            image = [UIImage imageNamed:kDownloadImageHolder];  
        }  
      
        //手动计算cell  
        CGFloat imgHeight = image.size.height * [UIScreen mainScreen].bounds.size.width / image.size.width;  
        return imgHeight;  
    }  
    

    相关文章

      网友评论

        本文标题:iOS UITableView适配 那些坑

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