<legend id='9ocI5'><style id='9ocI5'><dir id='9ocI5'><q id='9ocI5'></q></dir></style></legend>

<small id='9ocI5'></small><noframes id='9ocI5'>

      <tfoot id='9ocI5'></tfoot>

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

        在许多 UIVIewControllers 之间传递一个变量

        Pass a variable between lots of UIVIewControllers(在许多 UIVIewControllers 之间传递一个变量)

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

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

            1. <legend id='zGEnX'><style id='zGEnX'><dir id='zGEnX'><q id='zGEnX'></q></dir></style></legend>
                    <tbody id='zGEnX'></tbody>
                • 本文介绍了在许多 UIVIewControllers 之间传递一个变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在我的 iPhone 应用程序中,有一个设置助手可以帮助用户输入大量数据.它基本上是一个 UINavigationController,里面有很多 UIViewControllers.现在,在某个时刻,我想访问用户在他看到的第一个 UIViewController 中输入的变量.我可以使用 setter 方法在每个 UIViewController 之间传递变量,但我想有一种更简单的方法.

                  In my iPhone app, there is a setup assistant which helps users to input a lot of data. It's basically a UINavigationController with lots of UIViewControllers in it. Now, at a certain point, I want to access a variable that the user entered in the first UIViewController he saw. I could pass the variable between every UIViewController with a setter method, but I guess there is an easier way.

                  推荐答案

                  如果你愿意,你可以用 C 风格声明全局或类变量.如果您希望在 UIViewController 的多个子类中使用相同的变量,您可以在第一个控制器的 .h 文件中将其声明为外部变量,例如:

                  You can declare global or class variables in C style if you want to. If you want the same variable to be available in several of your sub classes of UIViewController, you'd declare it as an extern variable in the .h file of your first controller, for example:

                  #import <UIKit/UIKit.h>
                  
                  extern NSString *myGlobalString;
                  
                  @interface MyFirstViewController : UIViewController {
                  ...
                  

                  然后,您需要在 .m 文件中重新声明它,而不使用 extern.

                  You'd then redeclare it in your .m file without the extern.

                  #import "MyFirstViewController.h"
                  
                  NSString *myGlobalString;
                  
                  @implementation MyFirstViewController 
                  

                  您不应在其他 .m 或 .h 文件中重新声明它,但您可以在所有导入 MyFirstViewController.h 的文件中访问该变量.设置变量时,请注意正确释放和保留它.使用这种全局变量很容易造成内存泄漏.

                  You shouldn't redeclare it in the other .m or .h files, but you can access the variable in all files that import MyFirstViewController.h. When setting the variable, take care to release and retain it properly. It's easy to create a memory leak with this kind of global variable.

                  这篇关于在许多 UIVIewControllers 之间传递一个变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  UINavigationController inside a UITabBarController inside a UISplitViewController presented modally on iPhone(UISplitViewController 内的 UITabBarController 内的 UINavigationController 以模态方式呈现在 iPhone 上) - IT屋-程序员软件开发技术分
                  ViewController in UINavigationController orientation change(UINavigationController 中的 ViewController 方向更改)
                  Custom back button in UINavigationController(UINavigationController 中的自定义后退按钮)
                  How to get the previous viewcontroller that pushed my current view(如何获取推送我当前视图的上一个视图控制器)
                  The correct way to set a light status bar text color in iOS 7 based on different ViewControllers(iOS 7中基于不同ViewControllers设置灯光状态栏文字颜色的正确方法)
                  Show UITabBar when UIViewController pushed(推送 UIViewController 时显示 UITabBar)
                • <tfoot id='PmUb8'></tfoot>
                    <tbody id='PmUb8'></tbody>
                • <legend id='PmUb8'><style id='PmUb8'><dir id='PmUb8'><q id='PmUb8'></q></dir></style></legend>

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

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

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