UITableView

UITableViewがスクロール時に落ちる件

なぜかはわかりませんが、UITableViewでplistより読み込んだNSMutableArrayを表示させると、スクロール時に落ちてしまう現象に悩まされました。 NSBundle *bundle = [NSBundle mainBundle]; NSString *path = [bundle pathForResource:@"data" ofType:@"plis…

UITableViewのスタイルをnibを使わずにGroupedに指定する方法

http://developer.apple.com/jp/iphone/library/documentation/UserExperience/Conceptual/TableView_iPhone/CreateConfigureTableView/chapter_5_section_2.html以下のメソッドをUITableViewControllerクラスのサブクラスに実装。 - (void)loadView { UITab…