UIKit/テーブル/セルを共有する
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[UIKit/テーブル]]
&tag(UIKit/テーブル/セルを共有する);
*目次 [#nd29c1a3]
#contents
*関連ページ [#vfcb04a9]
*参考情報 [#w38fcfeb]
-[[NibからCellを作って使いまわしてUITableViewCellを楽々カ...
*概要 [#v51ed55d]
-xibファイルにTable View Cellをドロップ。そのクラスをUITa...
-registerNibで登録。
#pre{{
override func viewDidLoad() {
super.viewDidLoad()
let nib = UINib(nibName: "ShareCell", bundle: nil)
tableView.registerNib(nib, forCellReuseIdentifier...
}
}}
-普通に使用する。
#pre{{
func tableView(tableView: UITableView, cellForRowAtIn...
let cell = tableView.dequeueReusableCellWithIdent...
cell.label.text = rows[indexPath.row]
return cell
}
}}
*トラブルシューティング [#v7e448aa]
**セールのマージンがおかしくなる [#tcfac5d0]
-xibファイルでマージン0でレイアウトしても、テーブルに埋め...
-この場合UITableViewのレイアウトを調整する。Constrain to ...
終了行:
[[UIKit/テーブル]]
&tag(UIKit/テーブル/セルを共有する);
*目次 [#nd29c1a3]
#contents
*関連ページ [#vfcb04a9]
*参考情報 [#w38fcfeb]
-[[NibからCellを作って使いまわしてUITableViewCellを楽々カ...
*概要 [#v51ed55d]
-xibファイルにTable View Cellをドロップ。そのクラスをUITa...
-registerNibで登録。
#pre{{
override func viewDidLoad() {
super.viewDidLoad()
let nib = UINib(nibName: "ShareCell", bundle: nil)
tableView.registerNib(nib, forCellReuseIdentifier...
}
}}
-普通に使用する。
#pre{{
func tableView(tableView: UITableView, cellForRowAtIn...
let cell = tableView.dequeueReusableCellWithIdent...
cell.label.text = rows[indexPath.row]
return cell
}
}}
*トラブルシューティング [#v7e448aa]
**セールのマージンがおかしくなる [#tcfac5d0]
-xibファイルでマージン0でレイアウトしても、テーブルに埋め...
-この場合UITableViewのレイアウトを調整する。Constrain to ...
ページ名: