문제

My working Code :

-(void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
    if (self.collectionView.contentOffset.y < -80 && ![self.pullDownRefreshControl isRefreshing])
    {
        [self.pullDownRefreshControl beginRefreshing];
    }
}
도움이 되었습니까?

해결책

According to this SO Question : UIRefreshControl in Landscape , It's a Bug (see the Comments of Dave DeLong's Answer), however you can try the Answers given in the Question.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top