ios - 将数据从 Viewcontroller 传输到 UIview
<p><p>我正在尝试使用 </p> 在 UIView 中绘制图表
<pre><code>-(void)drawRect:(CGRect)rect
{
;
CGContextMoveToPoint(context, 0f, 0f);
CGContextAddLineToPoint(context, Value1, 0);
CGContextStrokePath(context);
}
</code></pre>
<p>如果我在 UIView.m 中定义 Value1 ,它可以工作,但是:
Value1 应该从另一个 ViewController 传输,我在其中将 Value 输入到 Textfield。</p>
<p>如何将值 1 转移到我的 UIView 中?</p>
<p>(我可以将 Value 转移到另一个 ViewController,但在 ViewController 中我的 drawRect 方法不起作用)</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>YourViewClass.h</p>
<pre><code>{
@public
CGFloat Value1;
}
</code></pre>
<p> ViewController </p>
<pre><code>myView->Value1 = someValue;
;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 将数据从 Viewcontroller 传输到 UIview,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/31794089/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/31794089/
</a>
</p>
页:
[1]