I have created a tabBar
application, it has two tabs one tableView
with detail items and another simple UIView
with a UILabel
. I added scrollView
to detailViewController
and put all UI items under scrollView
to get scrolling. I connected the scrollView
using outlet
to my detail view and set the following in detailViewController
[scrollView setScrollEnabled:YES];
scrollView.contentSize = CGSizeMake(scrollView.frame.size.width,scrollView.frame.size.height);
However detail view is not scrolling, its screen is locked. why?