facebook twitter hatena line email

Ios/swift/TableView

提供: 初心者エンジニアの簡易メモ
2016年6月23日 (木) 06:37時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==storyboardを使ってTableViewを追加== #sotryboardにTableViewを貼り付ける #TableViewオブジェクトをViewControllerに紐付ける #TableViewのdatagate...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

storyboardを使ってTableViewを追加

  1. sotryboardにTableViewを貼り付ける
  2. TableViewオブジェクトをViewControllerに紐付ける
  3. TableViewのdatagateとdatasourceをViewControllerに紐付ける(TableViewオブジェクトを選択し、ViewControllerの上3つのボタンの一番左にcontrolボタンで紐付ける)
  4. 以下をViewController.swiftに追加
   @IBOutlet weak var testTableView: UITableView!
   override func viewDidLoad() {
       super.viewDidLoad()
       testTableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "Cell")
   }
   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
   }