我不完全确定如何解释我的问题,但我会尝试。
所以我一直在尝试学习如何使用委托(delegate)和协议(protocol),但遇到了问题。我有一个协议(protocol):ButtonInPopOverWasPressed,只有一种方法:
- (void)buttonWasPressedNSString *)buttonValue;
我还有一个主视图 Controller 和一个带有属性的自定义弹出框类:
@property (retain, nonatomic) id <ButtonInPopoverWasPressed> delegate;
在我的主视图 Controller 中,我有一个按钮和一个文本标签。当按下按钮时,它会转到正常的弹出窗口。然后我将 segue.destinationViewController 的委托(delegate)分配为主视图 Controller ,如下所示:
[segue.destinationViewController setDelegate:self];
Then when a button from the popover is selected it is displayed in the main view's text label by calling a protocol method that the main view listens for:
[self.delegate buttonWasPressed:sender.currentTitle]; // sends the title of the button pressed to the delegate
这一切都很好。当我想在按下按钮而不是将信息发送回主视图时将弹出框转换到不同的 View 时,我的问题就开始了。但是当我创建一个导航 Controller 作为弹出框并将关系设置为旧弹出框时,一切都崩溃了。
当我分配 segue 的委托(delegate)(如上所示)时,它在另一边显示为 null,因此我完全失去了将其传递给其他 subview 并将信息返回到主视图的能力。导航 Controller 会吸收委托(delegate)吗?如何让委托(delegate)通过 NC 获得实际 View ?
我知道这是协议(protocol)和委托(delegate)的基础知识,但我环顾四周,似乎永远找不到适合我的答案。
Best Answer-推荐答案 strong>
试试下面的代码。
NSArray *temp = [[segue destinationViewController] childViewControllers];
PopoverViewController *popoverViewController = (PopoverViewController)[temp objectAtIndex:0];
popoverViewController.delegate = self;
关于ios - 通过导航 Controller 时丢失指向委托(delegate)的指针,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11250385/
|