ios - 带有 nib 文件的 Storyboard 中的 UIViewController
<p><p>您好,请问是否可以在 Storyboard 中将 xib 与 <code>UIViewController</code> 混合使用?就像他们在他们的文件所有者中共享一个 Controller 一样,因为我打算通过使用 nib 作为扩展 View 来创建一个可扩展 View ,并且我想将一个值从 nib 文件传递到 Storyboard 中的 <code>UIViewController</code> 。谢谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我不建议您将 Storyboard 中的 xib 和 ViewController 混合在一起并将它们连接在一起。
如果您想将 UIView 作为扩展 View 添加到您的 ViewController ,您可以执行以下操作:</p>
<pre><code>// Load the first view inside our xib from main bundle
UIView *view = [ loadNibNamed:@"nib_name" owner:self options:nil];
// Define new X,Y to our view
float new_x_position = 0;
float new_y_position = 400;
view.frame = CGRectMake(new_x_position, new_y_position, CGRectGetWidth(view.frame), CGRectGetHeight(view.frame));
// UILabel inside our nib, '111' is the tag we set to our UILabel
UILabel *label = (UILabel*);
// Add our view to the current view as a sub view
;
</code></pre>
<p>希望我理解正确。</p></p>
<p style="font-size: 20px;">关于ios - 带有 nib 文件的 Storyboard 中的 UIViewController,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/21871703/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/21871703/
</a>
</p>
页:
[1]