UITableViewController
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag();
*目次 [#c7b1fdb9]
#contents
*関連情報 [#vcf5f158]
-[[UITableView]]
-[[UIViewController]]
*行の追加と削除 [#rb31d81b]
-[[Table View Programming Guide for iOS: Inserting and De...
-[[cocoa*life - UITableViewにcellを動的に追加/削除する2つ...
*行の高さを指定する [#eda64be6]
-tableView:heightForRowAtIndexPathを追加する。
#pre{{
- (CGFloat)tableView:(UITableView *)tableView heightForRo...
if (indexPath.row == 0) {
return 100;
}
return 200;
}
}}
*テーブルセル [#jaa48969]
**右矢印を表示 [#r6e19ff7]
cell.accessoryType = UITableViewCellAccessoryDisclosureI...
*Tips [#c28a10c8]
**グラデーションつきのテーブル [#pccca7e3]
-[[Cocoa with Love: Adding shadow effects to UITableView ...
終了行:
&tag();
*目次 [#c7b1fdb9]
#contents
*関連情報 [#vcf5f158]
-[[UITableView]]
-[[UIViewController]]
*行の追加と削除 [#rb31d81b]
-[[Table View Programming Guide for iOS: Inserting and De...
-[[cocoa*life - UITableViewにcellを動的に追加/削除する2つ...
*行の高さを指定する [#eda64be6]
-tableView:heightForRowAtIndexPathを追加する。
#pre{{
- (CGFloat)tableView:(UITableView *)tableView heightForRo...
if (indexPath.row == 0) {
return 100;
}
return 200;
}
}}
*テーブルセル [#jaa48969]
**右矢印を表示 [#r6e19ff7]
cell.accessoryType = UITableViewCellAccessoryDisclosureI...
*Tips [#c28a10c8]
**グラデーションつきのテーブル [#pccca7e3]
-[[Cocoa with Love: Adding shadow effects to UITableView ...
ページ名: