user1305392
user1305392

Reputation: 31

Parse SDK : where can I find the version identifier?

Where can I find the the version number in the Parse iOS SDK, and/or how can I retrieve it in code?

Upvotes: 3

Views: 629

Answers (1)

benaneesh
benaneesh

Reputation: 416

Have a look at the PFConstants.h file or just do

NSLog(@"%@", PARSE_API_VERSION);

Upvotes: 2

Related Questions