1
我想在重新加載數據之前刪除表格視圖中的所有行,但似乎無法使其工作。在重新加載之前刪除表格行
在我的viewcontroller中,我從這個AFNetworking請求中獲得我的數組。
- (void)viewDidLoad
[[LocationApiClient sharedInstance] getPath:@"locations.json"
parameters:nil
success:
^(AFHTTPRequestOperation *operation, id response) {
NSLog(@"Response: %@", response);
NSMutableArray *location_results = [NSMutableArray array];
for (id locationDictionary in response) {
Location *location = [[Location alloc] initWithDictionary:locationDictionary];
[location_results addObject:location];
}
self.location_results = location_results;
[self.tableView reloadData];
}
failure:
^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error fetching locations!");
NSLog(@"%@", error);
}];
}
而且我想刪除的數據,然後通過這個按鈕
- (IBAction)locationPressed:(id)sender {
[[Location sharedSingleton].locationManager startUpdatingLocation];
[self viewDidLoad];
NSMutableArray *location_results = [NSMutableArray array];
[location_results removeAllObjects];
[self.tableView reloadData];
}
重新加載它,但它不刪除行。我看到重載發生在已經存在的行的頂部。有什麼建議麼?
Thanks @Gabriele,這是非常有幫助的。我應該在哪裏調用removeAllObjects?在重新加載之前,實施建議仍然不會清除表格視圖。 – jacobt 2013-04-10 04:18:09
@jacobt這取決於你想達到什麼目的?你想要消失的圖形效果嗎?或者乾脆重新加載整個表? – 2013-04-10 04:19:17
我希望按下按鈕後消失的圖形效果,然後用新數據重新加載表格單元格。可能嗎?謝謝你的幫助! – jacobt 2013-04-10 04:25:40