iPhone SDK: How do I pass an array of values from a ViewController onto other ViewController?(iPhone SDK:如何将一组值从 ViewController 传递到其他 ViewController?)
问题描述
我尝试在 SecondViewController
中创建如下方法:
I tried creating a method like below in SecondViewController
:
-(void)setValue:(NSMutableArray*)array
{
//NSMutableArray *newArray = [[NSMutableArray alloc] init];
newArray = [array retain];
}
并使用名为 second 的 SecondViewController
对象从 FirstViewController
传递值:
and passing the value from FirstViewController
using an object of SecondViewController
named second:
[second setValue:existingArray];
existingArray
是一个 NSMutableArray.
existingArray
is an NSMutableArray.
可能出了什么问题?
推荐答案
在代码中,您在 SecondViewController
的second
"对象中设置了数组.
In the code you have set the array in the "second
" object of a SecondViewController
.
所以你需要使用那个对象来显示 SecondeViewController
,否则它怎么可能不显示数组.
So you need to use that object for displaying the SecondeViewController
, other wise how can it won't show the array.
检查以下代码.
// In the FirstViewController
- (void)buttonClicked:(id)sender{
SecondViewController *second = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle: nil];
[second setValue:existingArray];
[self.navigationController pushViewController:second animated:YES];
[second release];
}
在代码中,我将数据分配给第二个"对象中的数组,并使用该对象来显示控制器.
Here in the code I am assigning the data to the array in the "second" object and I am using that object to display the controller.
问候,
萨提亚
这篇关于iPhone SDK:如何将一组值从 ViewController 传递到其他 ViewController?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone SDK:如何将一组值从 ViewController 传递到其他 ViewController?


基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01