In RootViewController
am using a UITableView for displaying the content of data. In the didSelectRowAtIndexPath
method, I am calling another view controller (DetailViewController
) to display detailed data. For displaying this detailed data I am using a UITableview
in the DetailViewController
also. This table contains one section and only one row.
Now the problem is that I have to adjust the table's height dynamically when I move from RootViewController
to DetailViewController
. How can I make the height of the UITableView
dynamic between the two classes?
Any help would be Appreciated!