这似乎是iOS的一个BUG(ref: stackoverflow的大神们讲的)
解决方案
在继承自UITableViewCell的子类中的init方法中加入如下设置:
self.contentView.frame = self.bounds;
self.contentView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
这似乎是iOS的一个BUG(ref: stackoverflow的大神们讲的)
解决方案
在继承自UITableViewCell的子类中的init方法中加入如下设置:
self.contentView.frame = self.bounds;
self.contentView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
转载于:https://www.cnblogs.com/sohobloo/p/4434591.html