Contents

Atachment
Attachment '2'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
ViewController에 다음 한줄만 추가하면 Pull-To-Refresh 기능이 구현가능한 SVViewController 라는 오픈소스입니다.
[self.tableView addPullToRefreshWithActionHandler:^{
    NSLog(@"refresh dataSource");

    [tableView.pullToRefreshView performSelector:@selector(stopAnimating)
        withObject:nil afterDelay:2];
}];


소스 다운로드는 첨부파일 또는 아래링크를 확인하세요.
https://github.com/samvermette/SVPullToRefresh

SVPullToRefresh.jpg

?