SwiftでtableView使ってアプリを作成しようとしている者です。
以下のコードを書いた後、DataSourceとDelegeteを設定してTableViewに値をセットしようとしたら、
Signal SIGABRTが出てしまいました。
どうしたら解決できますか?
教えてください。
import UIKit
class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource{
@IBOutlet weak var tableView: UITableView!
let places = ["yuy","ii","i","j"]
override func viewDidLoad() {
super.viewDidLoad()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return places.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell: UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "placeCell", for: indexPath)
cell.textLabel!.text = places[indexPath.row]
return cell
}
}