我在UINavigationController中有一个UITableView。在导航栏上,我有一个名为add的按钮。按下此按钮时,它会显示一个UIPopoverController,用户可以在UITableView中输入要添加为新行/单元格的数据。我的问题是如何从UIPopover向UITableView添加新单元格?我是否将数组数据传递给UIPopOver根控制器?
答案 0 :(得分:4)
我知道有两种解决方案。一种方法是从弹出窗口向根控制器发送通知,并应用必要的代码来更新handleNotification
方法中的tableView。
另一个,我个人使用的,是为popover设置委托协议。你必须设置这样的东西:
@protocol PopoverDelegate
- (void)addNewCell; // you can add any information you need to pass onto this if necessary such as addNewCellWithName:(NSString *)name, etc.
@end
@interface MyPopoverViewController..... {
id <PopoverDelegate> delegate;
// the rest of your interface code;
}
@property (nonatomic, retain) id delegate;
// any other methods or properties;
@end
然后在根视图控制器头文件中,您需要添加委托
@interface RootViewController .... <PopoverDelegate> {
然后在根视图控制器实现文件中,在实例化时指定popover委托。例如:
MyPopoverViewController *vc = [[MyViewController alloc] init];
vc.delegate = self; // this is where you set your protocol delegate
myPopover = [[UIPopoverController alloc] initWithContentViewController:vc];
myPopover.delegate = self;
[vc release];
最后,您将在代码中的某处添加协议方法
- (void)addNewCell {
// do what you want with the tableView from here
}
抱歉这有点长。我只是想确保我彻底。希望它有所帮助