我在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];
我不确定我做错了什么,但我很感激您可以提供的任何建议。
提前感谢您的时间和考虑!
答案 0 :(得分:2)
更改
[Cell.textLabel.text = @"Facebook"];
到
Cell.textLabel.text = @"Facebook";
或
[Cell.textLabel setText:@"Facebook"];
或
[[Cell textLabel] setText:@"Facebook"];
(您错误地将点和括号表示法合并。)