预期标识符cell.textLabel.text = @“Facebook”错误

时间:2013-12-14 22:27:28

标签: objective-c

我在xCode 5.0.2工作,我是新手,所以请原谅我提出这样一个基本问题......

我通过以下编码收到“预期标识符”错误:

UITableViewCell *Cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
[Cell.textLabel.text = @"Facebook"];
[O_TableArray addObject:Cell];
[Cell release];
Cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
[Cell.textLabel.text = @"Twitter"];
[O_TableArray addObject:Cell];
[Cell release];
Cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
[Cell.textLabel.text = @"Tumblr"];
[O_TableArray addObject:Cell];
[Cell release];
Cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
[Cell.textLabel.text = @"Email"];
[O_TableArray addObject:Cell];
[Cell release];

我不确定我做错了什么,但我很感激您可以提供的任何建议。

提前感谢您的时间和考虑!

1 个答案:

答案 0 :(得分:2)

更改

[Cell.textLabel.text = @"Facebook"];

Cell.textLabel.text = @"Facebook";

[Cell.textLabel setText:@"Facebook"];

[[Cell textLabel] setText:@"Facebook"];

(您错误地将点和括号表示法合并。)