1つのViewControllerから別のViewControllerにナビゲートしたい。これの一部として、私は にViewControllerを渡したいと思っています。私はいくつかの情報に移動したいです。私は の情報を、ターゲット viewControllerで外部オブジェクトとしてフックするオブジェクトにカプセル化しました。自己初期化されたViewControllerにUINibExternalObjectsを注入する
IBの内部に外部オブジェクトを作成しました.NibLoadingメソッドに渡されるNSDictionaryで参照した識別子を渡しました。私が期待したもの
NSArray* topLevelObjs = nil;
NSMutableDictionary* options = [[NSMutableDictionary alloc] initWithCapacity:1];
NSMutableDictionary* config = [[NSMutableDictionary alloc] initWithCapacity:1];
id detailImageVC = [[SelectedImageModalViewController alloc] init];
SelectedImageModalModel* selectImageModalModel = [[SelectedImageModalModel alloc] init];
selectImageModalModel.imageName = @"[email protected]";
[config setValue:selectImageModalModel forKey:@"SelectImageModalModel"];
[options setValue:config forKey:UINibExternalObjects];
topLevelObjs = [[NSBundle mainBundle] loadNibNamed:@"SelectedImageModalViewController" owner:detailImageVC options:options];
if ([topLevelObjs count] == 0)
{
NSLog(@"Warning! Could not substitute proxy objects in xib file.\n");
return;
}
[appDelegate.navigationController presentModalViewController:detailImageVC animated:YES];
[options release];
[config release];
[selectImageModalModel release];
[detailImageVC release];
私はpresentModalViewControllerと呼ばれた後ということであった:アニメーション:私は私の接続外部オブジェクト と非常に同じdetailImageVC上のviewDidLoadへの呼び出しを受け取ることになります。
代わりにどちらも発生しません。 viewWillApear:は呼び出されますが、detailImageVCは外部参照を保持しません。
ご意見、ご意見、ご感想をお待ちしております。ありがとう!