Search code examples
iosparsingidentifier

xCode iOS Dev - Parse Issue : Expected Identifier?


Check this out & let me know what you guys think is wrong. Thank you very much. :)

Image


Solution

  • 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];