我在视图控制器A中有一个选择器视图(作为文本字段的inputView)。 为了使用户能够选择新值(还不是选择器视图的一行),有一个按钮以模态方式呈现另一个视图控制器B,用户可以在其中创建新值。关闭后,我希望使用新值更新textfield及其inputView pickerView。 我的pickerview由CoreData的NSArray支持。不幸的是,当我关闭View控制器B时,pickerview没有更新,尽管新的值在核心数据中更新。
我怎样才能做到这一点?
答案 0 :(得分:1)
一个好的解决方案是实现委托模式(Cocoa中的常见模式):
在ViewControllerB.h中声明一个ViewControllerBDelegate协议。 然后在ViewControllerB界面中添加一个委托作为ivar。
//ViewControllerB.h
@class ViewControllerB;
@protocol ViewControllerBDelegate <NSObject>
@required
- (void)viewControllerB:(ViewControllerB *)controller didChangeValueTo:(NSString *)value;
@end
@interface ViewControllerB : UIViewController
@property (weak, nonatomic) id<ViewControllerB> delegate;
[...]
然后当值发生更改时(或当用户验证更改时)将事件发送给代理人,如下所示:
if ([self.delegate respondsToSelector:@selector(viewControllerB:didChangeValueTo:)])
{
[self.delegate viewControllerB:self didChangeToValue:newValue];
}
在ViewControllerA中,只需执行
ViewControllerB *viewController = [...]; //initialization
[viewController setDelegate:self];
并添加方法:
- (void)viewControllerB:(ViewControllerB *)controller didChangeValueTo:(NSString *)value
{
[...];//your stuff here
}