メール アプリでは、下の図のようにdrag the view down
とができるようになりました。release to refresh
これは SDK から取得できる標準的なものですか?
ありがとう
メール アプリでは、下の図のようにdrag the view down
とができるようになりました。release to refresh
これは SDK から取得できる標準的なものですか?
ありがとう
これを行うには、新しい iOS6UIRefreshControl
クラスを使用します。
yourUITableViewController.refreshControl = [[[UIRefreshControl alloc] init] autorelease];
[yourUITableViewController.refreshControl addTarget:yourTableView action:@selector(reloadData) forControlEvent:UIControlEventValueChanged];