菜鸟教程小白 发表于 2022-12-13 00:13:34

ios - 如何将自定义类分配给 TableViewController


                                            <p><p>我是一名 Android 开发人员,最近开始学习 Swift。我遇到了一个问题,我无法在 <code>UIStoryboard</code> 中为 <code>UITableView</code> 分配自定义类。当我写下类名并按 Enter 键时,iMac 会发出哔哔声。我一直坚持这个问题。有人可以在这里指导我吗?</p>

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

<p>这是类(class)</p>

<pre><code>import Foundation
import UIKit
class MemeTableViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {

    var memes : !

    override func viewWillAppear(_ animated: Bool) {
      super.viewWillAppear(animated)

      let appDelegate = UIApplication.shared.delegate as! AppDelegate
      memes = appDelegate.meme
    }

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

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -&gt; UITableViewCell {
      let cell = tableView.dequeueReusableCell(withIdentifier: &#34;tablecell&#34;)!
      let meme = memes[(indexPath as NSIndexPath).row]
      cell.imageView?.image = meme.memeImage
      cell.textLabel?.text = &#34;\(meme.topText)....\(meme.bottomText)&#34;
      return cell
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
      let controller = self.storyboard?.instantiateViewController(withIdentifier: &#34;MemeDetailViewer&#34;) as! MemeDetailViewer
      let meme = memes[(indexPath as NSIndexPath).row]
      controller.memeImage = meme.memeImage
    }
}
</code></pre>

<p>谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在您在 <code>UIStoryboard</code> 中给出类名称之前,您的类应该是该 Controller 的子类,如下所示:<code>UITableViewController</code>
您分配的是 <code>UIViewController</code> 的子类。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何将自定义类分配给 TableViewController,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/42873425/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/42873425/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何将自定义类分配给 TableViewController