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

[ad_1]

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

[ad_2]

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