菜鸟教程小白 发表于 2022-12-12 11:50:22

ios - 来自 NIB 的 UITableViewCell 中的子类 UIView


                                            <p><p>我在 IB 中创建了一个包含自定义 UIView 的 UITableViewCell。自定义 UIView 也包含在 NIB 中。如何将此自定义 UIView 加载到自定义 UITableViewCell 中?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在这里,您使用 IB <em>UIView(自定义类和 1 个 xibView )</em>?所以 IB View 是不必要的,xib 是要显示的 View 。 </p>

<p>在 UITableView -> 添加:</p>

<pre><code>;
</code></pre>

<p>添加获取自定义 View 的方法:</p>

<pre><code>// CustomCell.h
-(void) getCustomView;
// CustomCell.h
-(void) getCustomView{
    ;
    customView = [ initWithFrame:customView.frame];
    ;
}
</code></pre>

<p>添加加载xib CustomView:</p>

<pre><code>// CustomView.m
-(id) initWithFrame:(CGRect)frame{
    if (self = ) {
      NSArray *nibs = [ loadNibNamed:@&#34;CustomView&#34; owner:self options:nil];
      CustomView *v = (CustomView *);
      return v;
    }
    return self;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 来自 NIB 的 UITableViewCell 中的子类 UIView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17180434/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17180434/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 来自 NIB 的 UITableViewCell 中的子类 UIView