簡単なメモアプリを作っております。
完成近くまでできたのですが、Table View Cellのみうまく表示することができません。
- 表示されたエラー
2020-08-10 20:30:28.116547+0900 Memo[18252:2041469] [Storyboard] Unknown class _TtC4Memo21UITableViewController in Interface Builder file.
このエラーの直し方を教えていただきたいです。
import UIKit class ViewController: UIViewController,UITableViewDataSource{ var memoArray = [String]() @IBOutlet var memoTableView : UITableView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. memoTableView.dataSource = self } override func viewWillAppear(_ animated: Bool) { loadMemo() } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return memoArray.count } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "MemoCell")! cell.textLabel?.text=memoArray[indexPath.row] return cell } func loadMemo(){ let ud = UserDefaults.standard ud.register(defaults: ["memoArray": "default"]) if ud.array(forKey:"memoArray") != nil{ memoArray = ud.array(forKey:"memoArray") as! [String] memoTableView.reloadData() } } }
- 自分で行ったこと
ネット上に対策として載っていたclassやmoduleをいじる方法は一通り試しましたが、合っているか自信がないです。
- 下の画像のチェックをお願いします
2日ほど考え込んだのですが、なかなか解決策が見つかりません。
少し長い質問になってしましましたが、教えていただけると幸いです。
よろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/12 17:43