[Solved] xCode iOS Dev – Parse Issue : Expected Identifier? [closed]


here you have written type (id) & not written any identifier for this (id), thats why it is giving error.compiler always except identifier after the data type.

it should be only

[reachability currentReachabilityStatus];

solved xCode iOS Dev – Parse Issue : Expected Identifier? [closed]