我搜索并查看了许多类似的问题,但仍然无法找到答案。 如何在不初始化其他实例的情况下引用其他类? 如何从单独的类中调用“reloadData”以反映MOC的数据。 由于我已通过NSNotification验证,MOC似乎正在节省。
Popover Class:
-(void)actionSave:(id)sender {
MainContent *entityContent =
[NSEntityDescription insertNewObjectForEntityForName:@"MainContent"
inManagedObjectContext:self.mDoc.managedObjectContext];
entityContent.date = [NSDate date];
entityContent.title = self.titleName.text;
//Main Question: How do I call the ViewController's function that is in a separate class?
[ViewController reloadTableView]; //???
//Separate Question: How do I dismiss this popover from inside of this function?
}
ViewController类:
-(void)setupTable {
self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(gridV1, 140, column1_width, 768-170) style:UITableViewStylePlain];
[self.tableView setBackgroundColor:[UIColor clearColor]];
self.tableView.autoresizesSubviews = YES;
self.tableView.delegate = self.tableViewController;
self.tableView.dataSource = self.tableViewController;
[self.view addSubview:self.tableView];
}
-(void)reloadTableView{
[self.tableView reloadData];
}
TableViewController类:(self.tableView的委托和数据源)
- (void)setupFetchedResultsController
{
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"MainContent"];
// I want to sort them by the "date" attribute input by [NSDate date].
request.sortDescriptors = [NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@"date" ascending:YES]];
// no predicate because we want ALL of the data in the "MainContent" entity.
self.fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:request
managedObjectContext:self.mDoc.managedObjectContext sectionNameKeyPath:nil cacheName:nil];
}
- (void)setMDoc:(UIManagedDocument *)mDoc {
if (_mDoc != mDoc) _mDoc = mDoc;
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
if (!self.mDoc) {
[[globalMDoc sharedDocumentHandler] performWithDocument:^(UIManagedDocument *coreDatabase) {
self.mDoc = coreDatabase;
[self setupFetchedResultsController];
}];
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Overview Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
MainContent *content = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.textLabel.text = content.title;
cell.detailTextLabel.text = [NSString stringWithFormat:@"%d", [content date]];
return cell;
}
答案 0 :(得分:1)
我个人使用NSNotifcations,我有几个异步发生的事件,我发回通知。
也就是说,我所做的是在后台线程上下载图片,并在完成后重新加载表格。我这样做是通过向tableviewclass发送通知,表视图类重新加载自己的tableview。
〜丹
答案 1 :(得分:1)
好的,请点击此链接中的示例单词:http://www.galloway.me.uk/tutorials/singleton-classes/
然后在你的UITableView所在的UIViewController的Singleton中制作一个ivar。然后在UITableView视图的VDL中,执行类似
的操作 [Singleton sharedSingleton].theViewController = self;
然后在另一个视图中执行类似
的操作 Singleton *singleton = [Singleton sharedSingleton];
[singleton.mytableview reloadData];
但是,对于(= self)行,您可能希望在applicationDidFinishLaunching之前的某个地方执行此操作,以便在您尝试访问它时,theViewController变量不是nil。