我的tableview有问题。
它在顶部有这样一个空间:
ios - 在“下拉以刷新”期间,UITableView在顶部具有额外的空间-LMLPHP

当我打开TasksTableViewController时,问题没有出现。但是,当我从TaskTableVC打开另一个viewcontroller时,如下所示:

 FilterTasksTableViewController * fttvc = [self.storyboard instantiateViewControllerWithIdentifier:@"FilterTasksTableViewController"];
fttvc.delegate = self;
UINavigationController * navVC = [self.storyboard instantiateViewControllerWithIdentifier:@"PopoverNavigationController"];
[navVC setViewControllers:@[fttvc]];
[self presentViewController:navVC animated:YES completion:nil];

然后返回TaskTableVC,就会出现问题。
当我“下拉以刷新”时,它恢复正常。

在我的TaskTableVC代码中:
- (void)viewWillAppear:(BOOL)animated {
//other code
[self populate];
}

- (void)viewDidLoad {

 dispatch_async(dispatch_get_main_queue(), ^{

   self.refreshControl = [[UIRefreshControl alloc] init];

    self.refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@" "];

    [self.refreshControl addTarget:self action:@selector(refresh) forControlEvents:UIControlEventValueChanged];

    [self setRefreshControl:self.refreshControl];

});

    [self populate];
}

- (void)populate {

TaskHandler *handler = [[TaskHandler alloc] initWithContext:_context];
NSArray *allTasks = [handler getAll];

_tasks = [self filterTasks:allTasks];

NSSortDescriptor *descriptor = [[NSSortDescriptor alloc] initWithKey:@"startDate" ascending:NO];
NSArray *descriptors = [NSArray arrayWithObjects:descriptor, nil];
_tasks = [[NSMutableArray alloc] initWithArray:[_tasks sortedArrayUsingDescriptors:descriptors]];
dispatch_async(dispatch_get_main_queue(), ^{
    [self.tableView reloadData];
    [self.refreshControl endRefreshing];
});

}

希望您能解决这个奇怪的问题。

最佳答案

我用代码解决了我的问题。
我以为Refresh control出了点问题,因此我将其从dispatch_aysnc(dispatch_get_main_queue()中移出并添加了[self.tableview reloadData。那解决了我的问题。谢谢大家的回答。 :)

09-11 11:17