iphone - statusBar event to go top of viewController [iOS]. -
is there option of enable/disable when person touch clock of statusbar app go top of viewcontroller.
i created app main viewcontroller doesn't work , others works well, didn't know if option or api?
thanks in advance.
if you're talking uiscrollview
or uitableview
.
then need implement following method uiscrollviewdelegate
or uitableviewdelegate
.
- (bool)scrollviewshouldscrolltotop:(uiscrollview *)scrollview { return yes; // scroll top when touching statusbar }
Comments
Post a Comment