1. <tfoot id='RiJoR'></tfoot>

        <bdo id='RiJoR'></bdo><ul id='RiJoR'></ul>

      <small id='RiJoR'></small><noframes id='RiJoR'>

    2. <legend id='RiJoR'><style id='RiJoR'><dir id='RiJoR'><q id='RiJoR'></q></dir></style></legend>

      <i id='RiJoR'><tr id='RiJoR'><dt id='RiJoR'><q id='RiJoR'><span id='RiJoR'><b id='RiJoR'><form id='RiJoR'><ins id='RiJoR'></ins><ul id='RiJoR'></ul><sub id='RiJoR'></sub></form><legend id='RiJoR'></legend><bdo id='RiJoR'><pre id='RiJoR'><center id='RiJoR'></center></pre></bdo></b><th id='RiJoR'></th></span></q></dt></tr></i><div id='RiJoR'><tfoot id='RiJoR'></tfoot><dl id='RiJoR'><fieldset id='RiJoR'></fieldset></dl></div>
    3. iPhone SDK:如何将一组值从 ViewController 传递到其他 ViewController?

      iPhone SDK: How do I pass an array of values from a ViewController onto other ViewController?(iPhone SDK:如何将一组值从 ViewController 传递到其他 ViewController?)
      1. <small id='Lu6SM'></small><noframes id='Lu6SM'>

        1. <i id='Lu6SM'><tr id='Lu6SM'><dt id='Lu6SM'><q id='Lu6SM'><span id='Lu6SM'><b id='Lu6SM'><form id='Lu6SM'><ins id='Lu6SM'></ins><ul id='Lu6SM'></ul><sub id='Lu6SM'></sub></form><legend id='Lu6SM'></legend><bdo id='Lu6SM'><pre id='Lu6SM'><center id='Lu6SM'></center></pre></bdo></b><th id='Lu6SM'></th></span></q></dt></tr></i><div id='Lu6SM'><tfoot id='Lu6SM'></tfoot><dl id='Lu6SM'><fieldset id='Lu6SM'></fieldset></dl></div>
          <tfoot id='Lu6SM'></tfoot>
          • <bdo id='Lu6SM'></bdo><ul id='Lu6SM'></ul>

              <tbody id='Lu6SM'></tbody>
                <legend id='Lu6SM'><style id='Lu6SM'><dir id='Lu6SM'><q id='Lu6SM'></q></dir></style></legend>
                本文介绍了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.

                可能出了什么问题?

                推荐答案

                在代码中,您在 SecondViewControllersecond"对象中设置了数组.

                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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Getting an NSArray of a single attribute from an NSArray(从 NSArray 获取单个属性的 NSArray)
                ImageIO: lt;ERRORgt; JPEG Corrupt JPEG data: premature end of data segment iphone - how to catch this?(ImageIO:lt;错误gt;JPEG 损坏的 JPEG 数据:iphone 数据段过早结束 - 如何捕捉到这个?)
                How to get indexPath.row of tableView which is currently being displayed?(如何获取当前正在显示的 tableView 的 indexPath.row?)
                Xcode iOS organizer submit to app store yields quot;The archive is invalidquot; error(Xcode iOS 管理器提交到应用商店产生“存档无效;错误)
                MFMessageComposeViewController alloc returns nil(MFMessageComposeViewController alloc 返回 nil)
                How to add and get the values from .plist in iOS(如何在 iOS 中从 .plist 添加和获取值)

                  <i id='nWV62'><tr id='nWV62'><dt id='nWV62'><q id='nWV62'><span id='nWV62'><b id='nWV62'><form id='nWV62'><ins id='nWV62'></ins><ul id='nWV62'></ul><sub id='nWV62'></sub></form><legend id='nWV62'></legend><bdo id='nWV62'><pre id='nWV62'><center id='nWV62'></center></pre></bdo></b><th id='nWV62'></th></span></q></dt></tr></i><div id='nWV62'><tfoot id='nWV62'></tfoot><dl id='nWV62'><fieldset id='nWV62'></fieldset></dl></div>
                  <tfoot id='nWV62'></tfoot>

                    • <legend id='nWV62'><style id='nWV62'><dir id='nWV62'><q id='nWV62'></q></dir></style></legend>
                        • <bdo id='nWV62'></bdo><ul id='nWV62'></ul>

                        • <small id='nWV62'></small><noframes id='nWV62'>

                            <tbody id='nWV62'></tbody>