Swift開發教程--實現UITableView報錯does not conform to protocol 'UITableViewDataSource‘

來源:互聯網
上載者:User

標籤:ios 開發 swift

通過實踐,要是把下面三個協議方法都實現了就不會報錯了。另外還需要注意!的問題。

  func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
  }
  func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{      
  }
    
  func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath){

        tableView.deselectRowAtIndexPath(indexPath, animated: true)

   } 

Swift開發教程--實現UITableView報錯does not conform to protocol 'UITableViewDataSource‘

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.