[Solved] Expected Identifier cell.textLabel.text = @”Facebook” error [closed]


Change

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

to

Cell.textLabel.text = @"Facebook";

or

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

or

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

(You’re incorrectly combining dot and bracket notation.)

0

solved Expected Identifier cell.textLabel.text = @”Facebook” error [closed]