美文网首页
2015-11-30 iOS技术关键词

2015-11-30 iOS技术关键词

作者: EvilMilk | 来源:发表于2015-11-30 11:26 被阅读0次

    YYtext  ibreme大神的作品  git地址  https://github.com/ibireme/YYText  暂时记录 方便之后学习

    附上大神博客地址  http://blog.ibireme.com

    大神推荐的关于UITableView优化文章  学习感受颇多  http://blog.sunnyxx.com/2015/05/17/cell-height-calculation/

    在做列表优化时有涉及到用户头像的圆形绘制和缓存 发现一句代码会影响到绘制之后头像的清晰度 贴上代码以后需多注意

    self.headPicBtn.layer.shouldRasterize = YES;

    self.headPicBtn.layer.rasterizationScale = [UIScreen mainScreen].scale;

    self.contentView.frame = self.bounds;

    self.headPicBtn.layer.masksToBounds = YES;

    self.headPicBtn.layer.cornerRadius = 20;

    相关文章

      网友评论

          本文标题:2015-11-30 iOS技术关键词

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