私はオブジェクト名がusrです。私はビューを変更したいと思って、それを新しいビューに渡したいと思います。このオブジェクトをどのように渡すことができますか?それをやってのオブジェクトを別のビューに渡す
RVUser *usr = [[RVUser alloc] init];
UIViewController* exampleController = [[exampleClass alloc] initWithNibName:@"RVListsController" bundle:nil];
if (exampleController) {
exampleController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:exampleController animated:YES];
if (exampleController.title == nil) {
NSLog(@"enters");
//exampleController.title = @"Revistas Destacadas";
}
[exampleController release];
}
}
良い点ですが、彼の質問には対応していません – RyanR