标签:
最近项目发现,在tableviewCell中布局使用autolayout,但是在iOS7系统运行出现没有更新布局的bug,解决办法:
1.self.contentView.frame = self.bounds
2.?self.contentView.bounds = CGRectMake(0, 0, 99999, 99999);?
autolayout在iOS7下tableviewCell中使用出现的bug
标签:
原文地址:http://www.cnblogs.com/xmqxml/p/4337114.html