美文网首页
重写UITableViewCell的宽高

重写UITableViewCell的宽高

作者: __Objc | 来源:发表于2016-07-28 14:36 被阅读30次

 OC时代我们重写tabviewcell的SetFrame

- (void)setFrame:(CGRect)frame

{

frame.origin.y+=10;

frame.size.height-=10;

[supersetFrame:frame];

}


swift中 我们这样写

 override varframe:CGRect{

  didSet {

      var newFrame = frame

      newFrame.origin.x+=10/2

      newFrame.size.width-=10

      newFrame.origin.y+=10

      newFrame.size.height-=10

      super.frame= newFrame

   }

}

相关文章

网友评论

      本文标题:重写UITableViewCell的宽高

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