How to create automatic table view cell size with complicated structure, which contains big amount of subview?
Here is an example of table view cell:
For example, total height of table view cell is 220 px: Brown area - 70 px, green area 90px, red - 10 px and black - 50px. Blue area always will be same height as tableview cell.
How can i decrease tableview cell height using autolayout and UITableViewAutomaticDimension to become 130px by removing/hiding/whatever that whole green area?
Is it possible to achieve it using UITableViewAutomaticDimension and correct constraints without any old style approach?
NOTE: Minimum version is iOS 8(but iOS 9+ solution will be ok too, i'll increase minimum version...)