objective c - iPhone ScrollView in Tab Bar Controller - ScrollView doesn't scroll. Can someone help? -
i'm trying add scrollview tab bar controller. problem scrollview won't scroll, , can't life of me find out why on google. if replace scrollview textview, 1 scrolls, , tableview.
you can code demonstrating here: git://gitorious.org/scrollview-in-tabbar-project/scrollview-in-tabbar-project.git
can tell me i'm doing wrong? please notice that, annoyingly, textview inside scrollview scrolls. not sure if related, don't viewwillappear call when select scrollview's tab.
you haven't set contentsize
of scrollview. responsible set contentsize
property. in case, can add viewdidload
in secondviewcontroller
:
-(void)viewdidload { [super viewdidload]; uiscrollview *scrollview = (uiscrollview *)self.view; scrollview.contentsize = cgsizemake(self.view.frame.size.width, 1024); }
set height of contentsize
ever fits needs (possibly have calculate height fit putting in scrollview).
here's example apple documentation: creating scroll views in interface builder
Comments
Post a Comment