我希望在呈现modalView时将子视图中的数据(一个字符串数组)加载到子视图中的一组UITextField中。
我知道如何从孩子传给父母,我相信从另一个方面来说更容易,但我不知道如何。
更新:删除更新,因为我发现了问题(双重释放模态视图)
答案 0 :(得分:2)
覆盖子视图控制器的init方法。
- (id) initWithStrings:(NSArray *)string {
if (self = [super init]) {
// Do stuff....
}
return self;
}
然后在父母:
MyChildViewController *vc = [[[MyChildViewController alloc] initWithStrings: strings] autorelease];
答案 1 :(得分:0)
你可以采取两种方式:
1.在Matt建议中取消初始化方法
2.创建子类中的字段并将这些值传递给文本字段。
@interface ChildViewController : UIViewController{
NSArray *strings;
UITextfield *textField1;
UITextfield *textField2;
}
...
- (void)viewDidLoad {
[super viewDidLoad];
textField1.text = [strings objectAtIndex:0];
textField2.text = [strings objectAtIndex:1];
}
然后在父类中:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
ChildViewController *childController = [[ChildViewController alloc] init];
childController.strings = your_array_of_strings;
[self.navigationController pushViewController:childController animated:YES];
[childController release];
}
答案 2 :(得分:0)
- (id)initWithDataObject:(YourDataObjectClass *)dataObject {
if (self = [super init]) {
self.dataObject = dataObject;
// now you can do stuff like: self.myString = self.dataObject.someString;
// you could do stuff like that here or if it is related to view-stuff in viewDidLoad
}
return self;
}
答案 3 :(得分:0)
如果你想变得非常喜欢,你可以为你的孩子观点做一个委托。
@protocol MyChildViewDelegate
- (NSArray*)getStringsForMyChildView:(MyChildView*)childView;
@end
@interface MyChildView : UIView
{
id <MyChildViewDelegate> delegate;
...
}
@property (nonatomic, assign) id <MyChildViewDelegate> delegate;
...
@end
然后在你看来的某个地方,你会要求字符串:
- (void)viewDidLoad
{
...
NSArray* strings = [delegate getStringsForMyChildView:self];
...
}
然后在你的控制器(或任何地方),你可以做:
myChildView = [[MyChildView alloc] initWith....];
myChildView.delegate = self;
...
- (NSArray*)getStringsForMyChildView:(MyChildView*)childView
{
return [NSArray arrayWithObjects:@"one", @"two", @"three", nil];
}
在这种情况下可能有点矫枉过正,但UITableViews也是这样做的:他们有一个数据源委托来为他们提供内容。