pastLabelからドラッグ&ドロップでPastViewControllerにOutlet接続してシミュレートを行うと下記のエラーが出ます。
The pastSample outlet from the PastViewController to the UILabel is invalid. Outlets cannot be connected to repeating content.
思い当たる節といえば、エラー前のOutlet名であるsampleLabelを今のpastLabelに名前を変更してから出るようになりました。しかし、下記のコードで書き換えが必要な場所は変更したつもりですが、エラーは解消しません。
一体何が原因なのでしょうか?
swift
1import UIKit 2import Firebase 3 4class PastViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { 5 6 @IBOutlet weak var pastTableView: UITableView! 7 8 @IBOutlet weak var pastSample: UILabel! 9 10 @IBOutlet weak var addButton: UIBarButtonItem! 11 12 @IBOutlet weak var titleButton: UIBarButtonItem! 13 14 var sampleLabel = String() 15 var contentsArray = [Contents]() 16 17 18 override func viewDidLoad() { 19 super.viewDidLoad() 20 21 pastTableView.delegate = self 22 pastTableView.dataSource = self 23 self.navigationController?.setNavigationBarHidden(false, animated: false) 24 25 26 if UserDefaults.standard.object(forKey: "sampleLabel") != nil{ 27 28 sampleLabel = UserDefaults.standard.object(forKey: "sampleLabel") as! String 29 } 30 31 pastSample.text = sampleLabel 32 33 } 34 35 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 36 37 return contentsArray.count 38 39 } 40 41 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 42 43 let cell = pastTableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) 44 45 let pastSample = cell.viewWithTag(1) as! UILabel 46 pastSample.text = contentsArray[indexPath.row].sampleString 47 48 return cell 49 50 } 51 //cellの高さ 52 func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 53 54 return 76 55 56 } 57 58 func numberOfSections(in tableView: UITableView) -> Int { 59 60 return 1 61 } 62 63 64 65 @IBAction func addAction(_ sender: Any) { 66 67 let addVC = self.storyboard?.instantiateViewController(identifier: "addVC") as! AddViewController 68 69 self.navigationController?.pushViewController(addVC, animated: true) 70 71 } 72 73 @IBAction func titleAction(_ sender: Any) { 74 75 self.navigationController?.popViewController(animated: true) 76// let title = self.storyboard?.instantiateViewController(identifier: "titleVC") as! TitleViewController 77 } 78 79 /* 80 // MARK: - Navigation 81 82 // In a storyboard-based application, you will often want to do a little preparation before navigation 83 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 84 // Get the new view controller using segue.destination. 85 // Pass the selected object to the new view controller. 86 } 87 */ 88 89} 90
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。