PPMESSAGE / ppcom-ios-sdk

ppmessage ios sdk

Home Page:https://www.ppmessage.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PPComLib

CI Status Version License Platform

Try Example

To run the example project, clone the repo, and run pod install in example directory and open .xcworksapce file.

You may need refresh your existed cocoapods repos before running pod install.

cd ~/.cocoapods/repos/master; git pull;

Pod

current version: 0.2.0

Installation

PPComLib is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "PPComLib"

Init

Init with anonymous user

    PPSDKConfiguration *sdkConfiguration = [[PPSDKConfiguration alloc] init];
    [sdkConfiguration setHostUrl:@"https://ppmessage.cn" appUUID:@"XXXX-XXXXX-XXXXXXX" registrationId:@"xxxxxxxxxxxxxxxxxxxxxxxxxx"];
    [[PPSDK sharedSDK] configure:sdkConfiguration];
    [[PPSDK sharedSDK] start];
    

Init with named user

    PPSDKConfiguration *sdkConfiguration = [[PPSDKConfiguration alloc] init];
    [sdkConfiguration setHostUrl:@"https://ppmessage.cn" appUUID:@"XXXX-XXXXX-XXXXXXX" registrationId:@"xxxxxxxxxxxxxxxxxxxxxxxxxx" entUser:@{@"ent_user_id": @"the_user_id", @"ent_user_name": @"the_user_name", @"ent_user_icon": @"the_user_icon", @"ent_user_create_time": @"the_user_create_time", 123456}];
    [[PPSDK sharedSDK] configure:sdkConfiguration];
    [[PPSDK sharedSDK] start];
    

Author

kun.zhao@ppmessage.com, jin.he@ppmessage.com, guijin.ding@ppmessage.com

License

PPComLib is available under the MIT license. See the LICENSE file for more info.

About

ppmessage ios sdk

https://www.ppmessage.com

License:Other


Languages

Language:Objective-C 99.5%Language:Ruby 0.4%Language:Shell 0.1%