mob1serv: universal web service for iPhone / Android
high scores, push notifications, GPS locations, direct messages ..
-
Quick install
- First, check that you have registered your account in our admin panel and added at least one application there. There is a video demonstration available for the admin panel part and a video version of the current Xcode implementation guide.
- Make sure you have downloaded the latest version of the client connector project.
This guide will explain connection to the Highscores service, but the same steps are required to plug any Mobserv service into your application.
So, download HSConnector and unpack wherever you like. - Create empty XCode project (or open existent)
- Reveal HSConnector folder in the Finder
- Find HSConnector.xcodeproj file
- Drag it to your project tree.
- Press Add, you should see HSConnector under your project:
- Expand HSConnector.xcodeproj, you should see libHSConnector.a
- Go to Targets, expand current target, you should see something like this:
- Now Drag libHSConnector.a from HSConnector.xcodeproj to your target "Link Binary With Libraries" section, result should look like:
- Now go to your target-> Right Click->Get Info
- In the General section click "+" in the Direct Dependencies section, dialog will appear:
- Pick HSConnector and press Add Target, then HSConnector library should appear in the Direct Dependencies section:

- Open HSConnector project by doubleclicking on its alias in your project tree
- Drag HSHeaders and MobservAdditional folders to your project:
- Press Add, now you have these folders in your project:
- The last step is to add headers import to your pch file, add these two lines:
#import "MobservServiceFramework.h"
#import "HighscoresServiceFramework.h" - Now your .pch file should look like this:
- Your build log should look similar to this:
- If you have troubles, refer to our example projects, find them in corresponding module’s pages (we have one example for each service). If that doesn’t help, seek assistance – the contacts are provided in Help section.
Video version of this guide:




