ios - 从 XIB 创建新的 UIView 对象
<p><p>我在 xib 中创建了一个 View ,其中 UIImageviews 和 UILabel 作为 subview 。从我的代码中,每次运行循环时是否可以创建一个新的 View 对象。请帮助我。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要创建一个名为 CustomView 的新自定义 View
在XIB中选择类到CustomView。</p>
<p>然后将 XIB 名称加载到 View 对象中并可以循环使用</p>
<pre><code>CustomView *aView = [[ loadNibNamed:@"YourXibName" owner:nil options:nil] objectAtIndex:0];
</code></pre></p>
<p style="font-size: 20px;">关于ios - 从 XIB 创建新的 UIView 对象,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/16737903/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/16737903/
</a>
</p>
页:
[1]