forkingdog / UITableView-FDTemplateLayoutCell

Template auto layout cell for automatically UITableViewCell height calculating
MIT License
9.93k stars 2.01k forks source link

ios 11 contentView.translatesAutoresizingMaskIntoConstraints not compare #376

Open FuLingTaiHexiaoke opened 6 years ago

FuLingTaiHexiaoke commented 6 years ago

[LayoutConstraints] Changing the translatesAutoresizingMaskIntoConstraints property of the contentView of a UITableViewCell is not supported and will result in undefined behavior, as this property is managed by the owning UITableViewCell. Cell:

wangyingbo commented 5 years ago

set the translatesAutoresizingMaskIntoConstraints to YES;

i got a console warning when the translatesAutoresizingMaskIntoConstraints is NO.So i change the value then the warning disappeared. templateCell.contentView.translatesAutoresizingMaskIntoConstraints = YES;