[Solved] custom tableviewcell and autolayout

You can definitely use any kind of UIView without using IB, this includes a UITableViewCell. What you could do is in your – (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier method, you can configure all the constraints, you can set every single subview that you want for your tableview to CGRectZero, and add them to the cell’s contentView, the … Read more