ios - tableview in scrollview wont scroll -
i have uitableview subview of scrollview. can select cells fine cannot scroll. tableview, when showing, covers scrollview completely. how can make tableview scroll?
you need set content size of containing uiscrollview.
[containingscrollview setcontentsize:youttableview.contentsize];
you should able appropriate contentsize after viewdidlayoutsubviews method in uiviewcontroller lifecycle.
Comments
Post a Comment