我有一个对象名称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];
}
}
最佳答案
一种实现方法是在RVUser
上声明一个exampleClass
类型的属性,并在创建exampleController
之后将其分配给该属性。