2009/11/11 16:35:29
とりあえずデータを1個セットしてみる。
データを1個セットするにしても変更箇所が3カ所ある。
section の数、テーブルの Cell の数、実際にセットするデータ。
section の数: numberOfSectionsInTableView
Cell の数 : numberOfRowsInSection
データ : cell.text = @"にんじん";
cell.text = @"にんじん"; ←だけ追加してみた。
実行〜
何も表示されず・・・f^^;
numberOfRowsInSection の数が 0 なので表示されず・・・
numberOfRowsInSection を 1 にしてみる。
にんじんが表示された。
次は、section を表示してみる。
データを1個セットするにしても変更箇所が3カ所ある。
section の数、テーブルの Cell の数、実際にセットするデータ。
section の数: numberOfSectionsInTableView
Cell の数 : numberOfRowsInSection
データ : cell.text = @"にんじん";
cell.text = @"にんじん"; ←だけ追加してみた。
#pragma mark Table view methods - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; } // Customize the number of rows in the table view. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 0; } // Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } // Configure the cell. cell.text = @"にんじん"; return cell; } |
実行〜
何も表示されず・・・f^^;
numberOfRowsInSection の数が 0 なので表示されず・・・
numberOfRowsInSection を 1 にしてみる。
にんじんが表示された。
次は、section を表示してみる。
PR