「Ios/swift/TableView/表示」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==storyboardを使ってTableViewを追加== #sotryboardにTableViewを貼り付ける #TableViewオブジェクトをViewControllerに紐付ける #以下をViewControll...」) |
(相違点なし)
|
2016年6月25日 (土) 07:35時点における最新版
storyboardを使ってTableViewを追加
- sotryboardにTableViewを貼り付ける
- TableViewオブジェクトをViewControllerに紐付ける
- 以下をViewController.swiftに追加
@IBOutlet weak var testTableView: UITableView! override func viewDidLoad() { super.viewDidLoad() testTableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "Cell") testTableView.delegate = self testTableView.dataSource = self } func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 10 } func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! UITableViewCell cell.textLabel?.text = String(indexPath.row + 1) + "データ" return cell }
- tableViewのメソッドを使えるようにインターフェイスを実装する
-class ViewController: UIViewController +class ViewController: UIViewController, UITableViewDataSource,UITableViewDelegate {