私はすでに別のビューで同じテーブルビューを行っていますが、このビューでは動作しませんでした。私も解決策を探していますが、私はタイプviewcontrollerはプロトコルuitableviewdatasourceに準拠していません
クラスHistoryViewController動作しないのか分からない:のUIViewController、UITableViewDelegate、UITableViewDataSourceを{
@IBOutlet weak var tableview: UITableView!
var date = ["ciao", "muori"]
var place = ["aaaa"]
override func viewDidLoad() {
super.viewDidLoad()
tableview.dataSource = self
tableview.delegate = self
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func tableView(tableView:UITableView, numberOfRowsInSection section:Int) -> Int
{
return 1
}
func tableview(tableView: UITableView, cellForRowIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = self.tableview.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! HistoryCell
cell.placeLabel.text = place[indexPath.row]
cell.dateLabel.text = date[indexPath.row]
return cell
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
{
}
誰かが私を助けることができますか?
ファイルを共有することは可能ですか? – harshitgupta
'tableView:cellForRowAtIndexPath:'の代わりに 'tableview:cellForRowIndexPath:'を実装しました。 – dan