小编Bal*_*kar的帖子

我正面临这个错误"这个类不是键值tableView的键值编码兼容".我在这里做错了什么?

所以,这是一个多页面应用程序,每当我切换到其中存在UITable的页面时,我面临这个错误"setValue:forUndefinedKey:]:这个类不是键值表符号的键值编码." 我之前得到了同样的错误,因为我忘了添加numberOfRowsInSection函数,但即使在添加之后我仍然面临同样的错误.

class workingQuery: UIViewController, UITableViewDelegate, UITableViewDataSource{


  @IBOutlet weak var tableViews: UITableView!


  override func viewDidLoad() {
    super.viewDidLoad()
  }

  override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated   
  }


  //TableView Code
  var names = ["Mark", "Cloyd", "Buck", "Steve", "Wallace"]
  var breeds = ["Labrador Retriver", "Bulldog", "German Shepherd", "Golden Retriver", "Yorkshire"]
  var images = [UIImage(named:"johnny"), UIImage(named:"dusra"), UIImage(named:"Third"), UIImage(named:"Fourth"), UIImage(named:"Fifth")]

  func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 5

  }

  func tableView(tableView: UITableView, cellForRowAtIndexPath …
Run Code Online (Sandbox Code Playgroud)

uitableview ios swift

1
推荐指数
1
解决办法
1234
查看次数

标签 统计

ios ×1

swift ×1

uitableview ×1