便利なクラスがいろいろと
http://code.google.com/p/iphone-classes/
持っておいて損はありません。
日曜日, 3月 22, 2009
木曜日, 3月 12, 2009
Debug ビルド時のみ NSLog を出力する
#ifdef DEBUG
#define DEBUG_NSLog NSLog
#else
#define DEBUG_NSLog
#endif
Debugビルド時のターゲットの設定に、プリプロセッサマクロ「DEBUG」を追加する。
月曜日, 3月 02, 2009
UITableView のグループ間の表示を狭くする
UITableView のグループ間の表示を狭くするには
sectionHeaderHeight と sectionFooterHeight を指定する。
viewDidLoad の中で
tableView.sectionHeaderHeight = 5.0;
tableView.sectionFooterHeight = 5.0;
と指定してやる。
sectionHeaderHeight と sectionFooterHeight を指定する。
viewDidLoad の中で
tableView.sectionHeaderHeight = 5.0;
tableView.sectionFooterHeight = 5.0;
と指定してやる。
登録:
投稿 (Atom)