To do this, use the new iOS6 class UIRefreshControl .
yourUITableViewController.refreshControl = [[[UIRefreshControl alloc] init] autorelease]; [yourUITableViewController.refreshControl addTarget:yourTableView action:@selector(reloadData) forControlEvent:UIControlEventValueChanged];
source share