autolayout在iOS7下tableviewCell中使用出现的bug
最近项目发现,在tableviewCell中布局使用autolayout,但是在iOS7系统运行出现没有更新布局的bug,解决办法:
1.self.contentView.frame = self.bounds
2.self.contentView.bounds = CGRectMake(0, 0, 99999, 99999);
最近项目发现,在tableviewCell中布局使用autolayout,但是在iOS7系统运行出现没有更新布局的bug,解决办法:
1.self.contentView.frame = self.bounds
2.self.contentView.bounds = CGRectMake(0, 0, 99999, 99999);