Skip to content

Instantly share code, notes, and snippets.

@corocorococoro
Created July 31, 2013 02:11
Show Gist options
  • Save corocorococoro/6118789 to your computer and use it in GitHub Desktop.
Save corocorococoro/6118789 to your computer and use it in GitHub Desktop.
reloadDataが完了後に処理を行いたい
@implementation UITableView (UITableViewAddition)
-(void)reloadDataAndWait:(void(^)(void))waitBlock {
[self reloadData];
if(waitBlock){
waitBlock();
}
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment