gpt4 book ai didi

objective-c - 将对象传递到不同的 View

转载 作者:行者123 更新时间:2023-11-29 05:02:27 25 4
gpt4 key购买 nike

我有一个对象名称 usr。我想更改 View ,并将其传递到新 View 。我怎样才能传递这个对象?

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];
}
}

最佳答案

一种方法是在 exampleClass 上声明 RVUser 类型的属性,并在创建 exampleController 后将其分配给该属性。

关于objective-c - 将对象传递到不同的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6560849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com