菜鸟教程小白 发表于 2022-12-13 14:47:51

ios - Swift 3.0 中的 UIView 内的 UITableView


                                            <p><p>将 <strong>UITableView</strong> 放入 <strong>UIView</strong> 时出现问题。 </p>

<p>我设置了 <strong>delegate</strong> 和 <strong>datasource</strong> 并实现所有方法。 </p>

<p>这是我的 UIView 类。 </p>

<pre><code>@objc class ChooserView: UIView, UITableViewDelegate, UITableViewDataSource {


@IBOutlet weak var backgroundView: UIView!
@IBOutlet weak var showView: UIView!
@IBOutlet weak var tableView: UITableView!   

public class func createChooserView() -&gt; ChooserView {

    var view: ChooserView!
    view = Bundle.main.loadNibNamed(String(describing: ChooserView.self), owner: self, options: nil)?.first as! ChooserView

    _ = MLAutolayouts.fillContainer(UIApplication.shared.keyWindow!.subviews.first!, view: view)

    //Register cell nib
    view.tableView.register(UINib(nibName: &#34;PhoneCell&#34;, bundle: nil), forCellReuseIdentifier: &#34;PhoneCell&#34;)

    return view
    }

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -&gt; Int {
    return 1
    }

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -&gt; UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: PhoneCell.self)) as! PhoneCell

    return cell
    }

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    print(&#34;TAP...&#34;)
   }
}
</code></pre>

<p>这就是<strong>导出</strong></p>

<p> <a href="/image/TKXqs.png" rel="noreferrer noopener nofollow"><img src="/image/TKXqs.png" alt="enter image description here"/></a> </p>

<p>当运行我的应用程序时。我收到此错误</p>

<pre><code>   -: unrecognized selector sent to instance 0x7fded2e772d0
</code></pre>

<p>记录图片。 </p>

<p> <a href="/image/aHMA1.png" rel="noreferrer noopener nofollow"><img src="/image/aHMA1.png" alt="enter image description here"/></a> </p>

<p>任何想法...</p>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>连接数据源的 IB 并委托(delegate)给 ChooserView 而不是任何其他 View 。</p>

<p>只需右键单击您的表格 View ,然后
按照随附的 gif 正确连接 IB:</p>

<p> <a href="/image/OaDu6.gif" rel="noreferrer noopener nofollow"><img src="/image/OaDu6.gif" alt="enter image description here"/></a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Swift 3.0 中的 UIView 内的 UITableView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/41986560/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/41986560/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Swift 3.0 中的 UIView 内的 UITableView