Can't get scrollsToTop working on iOS7

前端 未结 6 462
我在风中等你
我在风中等你 2020-12-29 04:15

I\'m targeting iOS7 in my latest app, and tapping on the status bar doesn\'t seem to scroll a tableView or collectionView to the top.

I\'ve set self.tableView.

6条回答
  •  难免孤独
    2020-12-29 05:17

    This always works for me:

    [self.tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];
    

提交回复
热议问题