2012年2月4日土曜日

numberOfRowsInSection エラーが出ないのに表示されない

ずーっとはまってしまって悔しかったのでメモ。

//テーブルの行数を設定します。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.functions count];
}


ずっとSが小文字のsでわからなかった、、
特にエラーもでてないので。

Objective-cでは、大文字、小文字の違いがかなり重要!!!!
ということを学びました。


//テーブルの行数を設定します。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInsection:(NSInteger)section {
return [self.functions count];
}

//テーブルの行数を設定します。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.functions count];
}


ぜんぜん気づけなくて、
30分くらいはまってた。。

みなさんもお気をつけ下さい!

0 件のコメント:

コメントを投稿