UIKit/テーブル
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(UIKit/テーブル);
*目次 [#sc69111a]
#contents
*関連ページ [#pe99027a]
-[[Storyboard]]
-[[./基本]]
-[[./セルの再利用]]
-[[./セルのカスタマイズ]]
-[[./セルを共有する]]
-[[./Static Cellsを使用する]]
-[[./セル内に置かれたボタンのイベントを処理する]]
-[[./空状態を表現する]]
-[[./Tips]]
*参考情報 [#w10c3f1c]
*概要 [#e44ab7b1]
-Swiftでテーブルビューを実装する方法
*サンプル [#a8f334ba]
**UITableViewControllerの基礎 [#o6dfe1e6]
-三行のデータを表示するサンプル。
#pre{{
class TableViewBasicViewController: UITableViewController {
var rows = ["aaa", "bbb", "ccc"]
override func viewDidLoad() {
super.viewDidLoad()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableV...
return 1
}
override func tableView(_ tableView: UITableView, num...
return rows.count
}
override func tableView(_ tableView: UITableView, cel...
let cell = tableView.dequeueReusableCell(withIden...
cell.textLabel?.text = rows[indexPath.row]
return cell
}
}
}}
終了行:
&tag(UIKit/テーブル);
*目次 [#sc69111a]
#contents
*関連ページ [#pe99027a]
-[[Storyboard]]
-[[./基本]]
-[[./セルの再利用]]
-[[./セルのカスタマイズ]]
-[[./セルを共有する]]
-[[./Static Cellsを使用する]]
-[[./セル内に置かれたボタンのイベントを処理する]]
-[[./空状態を表現する]]
-[[./Tips]]
*参考情報 [#w10c3f1c]
*概要 [#e44ab7b1]
-Swiftでテーブルビューを実装する方法
*サンプル [#a8f334ba]
**UITableViewControllerの基礎 [#o6dfe1e6]
-三行のデータを表示するサンプル。
#pre{{
class TableViewBasicViewController: UITableViewController {
var rows = ["aaa", "bbb", "ccc"]
override func viewDidLoad() {
super.viewDidLoad()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableV...
return 1
}
override func tableView(_ tableView: UITableView, num...
return rows.count
}
override func tableView(_ tableView: UITableView, cel...
let cell = tableView.dequeueReusableCell(withIden...
cell.textLabel?.text = rows[indexPath.row]
return cell
}
}
}}
ページ名: