菜鸟教程小白 发表于 2022-12-13 02:16:01

ios - 在 xib 文件中使用拖放时将调用 UIView 的哪个 init 方法


                                            <p><p>这里是自定义 Collection View ,标签下方是(我设计的评级 View )。<br/>
<img src="/image/YTjIJ.png" alt="enter image description here"/> </p>

<pre><code>    - (id)initWithFrame:(CGRect)frame
{
    self = ;
    if (self) {

      ;

      ;

      ;
    }
    return self;
}
</code></pre>

<p>但我发现每次评分 View 都没有出现( ImageView 和标 checkout 现)。然后我发现是因为我没有调用评级 View 的init方法,所以它是nil,但是为什么呢?<br/>
这是init方法。</p>

<blockquote>
<p>but it never call it ,it only call the layoutSubview method.</p>
</blockquote></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>考虑这种模式...</p>

<pre><code>-(id)initWithFrame:(CGRect)frame {
    if (self = ) {
      ;
    }
    return self;
}

-(id)initWithCoder:(NSCoder *)aCoder {
    if (self = ) {
      ;
    }
    return self;
}

-(void)_setup {
    blah;
    blah;
    blah;
}
</code></pre>

<p>尝试“了解正在发生的事情”,但如果您刚刚开始,这将帮助您度过难关。希望对你有帮助</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 xib 文件中使用拖放时将调用 UIView 的哪个 init 方法,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26081893/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26081893/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 xib 文件中使用拖放时将调用 UIView 的哪个 init 方法