I create a UIScrollView
, added other data in it, added subview to self.view
. The problem is that when i switch my phone from portrait to landscape or vice versa it do not update the height so my scrollview
do not work as i need to. here is the code:
UIScrollView *menuScroll = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 44+28+8, 130, self.view.frame.size.height)];
Override didRotateFromInterfaceOrientation method on your ViewController and change the frame of the scrollView.