Hi all.
I am having a drill-down menu with UITableViewController end menu is a UIViewController...
In the last menu (UIViewController objet)..
I do
All these are going outside the screen bounds.... (however i can make them congested to fit in screen, but i dont prefer..)
Problem is that the self.view is not scrollable..
I want to make it scrollable so that i can scroll to see all the labels..
(however the textview is scrollable by itself)
By giving self.view's bounds greater that screen bounds is not making it scrollable...
I am having a drill-down menu with UITableViewController end menu is a UIViewController...
In the last menu (UIViewController objet)..
I do
Code:
[self.view addSubView:myFirstLabel];
[self.view addSubView:mySmallImageView];
[self.view addSubView:mySecondLabel];
[self.view addSubView:myTextView];
All these are going outside the screen bounds.... (however i can make them congested to fit in screen, but i dont prefer..)
Problem is that the self.view is not scrollable..
I want to make it scrollable so that i can scroll to see all the labels..
(however the textview is scrollable by itself)
By giving self.view's bounds greater that screen bounds is not making it scrollable...