[Solved] Error in IOS App – Expected Identifier
[ad_1] The line before your error should have – (void)viewDidLoad and you should only call [super viewDidLoad] once. Move anything in your other viewDidLoad to this new method and delete your other viewDidLoad. For example: – (void)viewDidLoad { **This is where the error Expected identifier or “(” occurs** [super viewDidLoad]; [viewWeb setDelegate:self]; // Moved from … Read more