菜鸟教程小白 发表于 2022-12-13 08:55:19

ios - 从 subview 中的父 View Controller 检索数组


                                            <p><p>所以过去几天我似乎一直在尝试为此寻找各种解决方案,并决定最好还是问问别人。
我正在使用 Storyboard ,我将一个数组从一个 ViewController 发送到另一个就好了。但是一旦在这个 SecondViewController 我遇到了问题。然后,我希望能够访问此 ViewController 的 subview 中的数组,以便能够使用数据绘制图表,但是每当我尝试时,我总是从 subview 中的代码中获取 null,即使它肯定在 ParentViewController 中.有人可以看看我当前的代码,让我知道如何在我的 subview 中获取这些数据。</p>

<p><strong>ParentViewController.h</strong></p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;
#import &#34;GraphView.h&#34;
#import &#34;Model.h&#34;
@interface GraphViewController : UIViewController
@property (strong) Model *model;
@property (weak) GraphView *graph;
@property (strong) NSArray *data;
@end
</code></pre>

<p><strong>ParentViewController.m</strong></p>

<pre><code>#import &#34;GraphViewController.h&#34;

@interface GraphViewController ()

@end

@implementation GraphViewController
@synthesize graph;
- (void)viewDidLoad {
   ;
   // Do any additional setup after loading the view.
    NSLog(@&#34;Model data: %@&#34;,self.data);//prints just fine
;
}

- (void)didReceiveMemoryWarning {
;
// Dispose of any resources that can be recreated.
}
</code></pre>

<p><strong>SubView.h</strong></p>

<pre><code> #import &lt;UIKit/UIKit.h&gt;
#import &#34;Model.h&#34;
@interface GraphView : UIView
@property (weak) NSArray *array;
@property (strong) Model *model;
@end
</code></pre>

<p><strong>Subview.m</strong></p>

<pre><code> #import &#34;GraphView.h&#34;
#import &#34;GraphViewController.h&#34;
@implementation GraphView
- (id)initWithFrame:(CGRect)frame dataArray:(NSArray*)data {
   self = ;
   if (self) {
    // Initialization code
    }
return self;
}
- (void)drawRect:(CGRect)rect {
   // Drawing code
    NSLog(@&#34;Draw Rect&#34;);
    NSLog(@&#34;%@&#34;, self.array);//The bit that keeps returning null
    if (self.array != nil){
       NSLog(@&#34;Drawing Rect&#34;);
       CGContextRef ctx = UIGraphicsGetCurrentContext();
       CGContextBeginPath(ctx);
       CGContextMoveToPoint(ctx, 160, 100);
       CGContextAddLineToPoint(ctx,260,300);
       CGContextAddLineToPoint(ctx,60,300);
       CGContextClosePath(ctx);
       [ setFill];
       [ setStroke];
       CGContextSetLineWidth(ctx,2.0);
       CGContextDrawPath(ctx,kCGPathFillStroke);
    }

}
</code></pre>

<p>现在我知道它现在会返回 null,因为我实际上并没有将它分配给任何东西,但是我尝试了很多不同的方法来尝试将它分配给父 ViewController 中的数据数组,我忘记了如何我什至开始了。任何帮助将不胜感激!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 <code>viewDidLoad</code> 中分配 <code>GraphView</code> 的数据。还要确保您的 <code>self.graph</code> 已正确连接/初始化。</p>

<pre><code>- (void)viewDidLoad {
   ;
   // Do any additional setup after loading the view.
   NSLog(@&#34;Model data: %@&#34;,self.data);//prints just fine
   self.graph.array = self.data;
   ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从 subview 中的父 ViewController 检索数组,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31237413/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31237413/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从 subview 中的父 View Controller 检索数组