我想在我的應用程序中實現拉來刷新功能。該架構是這樣的,在UIViewController
內部有一個UITableView
。我希望能夠刷新桌面視圖。我在viewDidLoad
方法中嘗試了下面的代碼,但它不起作用。任何人都可以告訴我我在哪裏執行錯了嗎?拉UITableView在UIViewController裏面刷新
UIRefreshControl *refresh = [[UIRefreshControl alloc] init];
refresh.tintColor = [UIColor grayColor];
refresh.attributedTitle = [[NSAttributedString alloc] initWithString:@"Pull to Refresh"];
[refresh addTarget:self action:@selector(get_vrns) forControlEvents:UIControlEventValueChanged];
[self.vrnTable addSubview:refresh];
可能重複http://stackoverflow.com/questions/12497940/uirefreshcontrol-without-uitableviewcontroller) – Amar
[拉取UITableViewController時刷新UITableView]的可能重複(http://stackoverflow.com/questions/10291537/pull-to-re fresh-uitableview-without-uitableviewcontroller) – Lanorkin