Well, I've been searching a lot to solve my problem, however, I haven't found anything useful.
I have my custom cells, which can(or can't) contain images, text, titles, etc in free order, so I need to set the row's height depending on its content. Like these two: http://db.tt/AVBKYuEY http://db.tt/HbnXMMFn
The only way I can make them is by storyboard.
So, I call tableView:cellForRowAtIndex:
and set there the whole contents
and then I want to set the height of the row, BUT I can't do it, because the row's height is set in tableView:height...:, which is called BEFORE tableView:cellForRowAtIndex:
Btw, I also have constraints in my storyboard, so, it would be great if I could use them to count the cell height.
And also it perfectly changes width when I rotate iPhone, what is strange in fact that I can't change height
How to solve my problem?
