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

  • <legend id='H3D9G'><style id='H3D9G'><dir id='H3D9G'><q id='H3D9G'></q></dir></style></legend>

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

    <tfoot id='H3D9G'></tfoot>
    • <bdo id='H3D9G'></bdo><ul id='H3D9G'></ul>

        将 NSMutableArray 传递给一个视图控制器到另一个

        时间:2023-10-23
        • <tfoot id='OqTso'></tfoot>
            <i id='OqTso'><tr id='OqTso'><dt id='OqTso'><q id='OqTso'><span id='OqTso'><b id='OqTso'><form id='OqTso'><ins id='OqTso'></ins><ul id='OqTso'></ul><sub id='OqTso'></sub></form><legend id='OqTso'></legend><bdo id='OqTso'><pre id='OqTso'><center id='OqTso'></center></pre></bdo></b><th id='OqTso'></th></span></q></dt></tr></i><div id='OqTso'><tfoot id='OqTso'></tfoot><dl id='OqTso'><fieldset id='OqTso'></fieldset></dl></div>
          1. <legend id='OqTso'><style id='OqTso'><dir id='OqTso'><q id='OqTso'></q></dir></style></legend>

              <bdo id='OqTso'></bdo><ul id='OqTso'></ul>
              • <small id='OqTso'></small><noframes id='OqTso'>

                  <tbody id='OqTso'></tbody>
                  本文介绍了将 NSMutableArray 传递给一个视图控制器到另一个的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我试图在两个视图控制器之间传递一个 NSMutableArray.请让我知道我可以为此做些什么

                  I am trying to pass a NSMutableArray between two view controller. Please let me know what can i do for this

                  在我的 PlaylistViewController.h 文件中

                  In the PlaylistViewController.h file I have

                  NSMutableArray *SongArray;
                  @property(nonatomic,retain)NSMutableArray *SongArray;
                  

                  我希望传递给另一个视图控制器

                  which I wish to pass to another view controller

                  推荐答案

                  你可以通过两种方式分享:

                  You can share in two ways:

                  1. 使用属性

                  示例

                  .h 文件中

                      @interface ABCController : UIViewController
                      {
                          NSMutableArray *detailArray;
                      }
                      @property(nonatomic,retain)NSMutableArray *detailArray;
                  

                  .m 文件中

                      XYZController *xyzVC = [[XYZController alloc] initWithNibName:@"XYZController" bundle:nil];    
                      xyzVC.detailArray = self.detailArray;
                  
                      [self.navigationController pushViewCsecondView:xyzVC animated:YES];
                  
                  
                      **XYZController.h**
                  
                      @interface XYZController : UIViewController
                      {
                          NSMutableArray *detailArray;
                      }
                  
                  @property(nonatomic,retain)NSMutableArray *detailArray;
                  

                  1. 使用 NSUserDefaults

                  示例

                       [[NSUserDefaults standardUserDefaults] setValue:SongArray forKey:@"songArray"];
                       [[NSUserDefaults standardUserDefaults] synchronize];
                  
                       NSMutableArray *arr = [[NSUserDefaults standardUserDefaults] valueForKey:@"songArray"];
                  

                  这篇关于将 NSMutableArray 传递给一个视图控制器到另一个的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何比较iphone中的两个日期? 下一篇:我应该如何构建我的 iPhone 应用程序以与我的网站对话?

                  相关文章

                1. <legend id='LmdbA'><style id='LmdbA'><dir id='LmdbA'><q id='LmdbA'></q></dir></style></legend>

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

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

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

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