ZWSMSSDK 0.0.3.1

ZWSMSSDK 0.0.3.1

License Custom
ReleasedLast Release Jun 2017

Maintained by Initial-C.



ZWSMSSDK 0.0.3.1

  • By
  • Cribug

SMSSDK-for-iOS

SMSSDK is the most popular social SDK for apps and mobile games ! We've already supported over 1000 country or zone in global world until now. And also it’s easily to use in your app.now, I will tell you the steps liking this:

If you use cocoaPods ,now ,it's easily to import SMSSDK liking this:

##cocoapods import:

  • main module(necessary)
  • pod "SMSSDK"
  • Pod "MOBFoundation"

Yeah, you are right,it's over using cocoaPods to import SMSSDK. The next is to import the file's header and use the API of the SMSSDK what you wanted.

Now,tell you the steps of importing SMSSDK manually.

Step1: Download the SDK from here :Download SMSSDK_iOS

When you download the SDK, you will get something liking this:

It’s contain the three parties:

  • SMSSDK. Including static libraries and local files.When used directly to this folder into the project.
  • SMSSDKDemo. Showing the SDK foundation.
  • SMSSDKUI. If you want to use it, drag SMSSDKUI.xcodeproj to your project directly.

Step2:Import the SDK

Drag this folder into the project:

Step3: Add libraries

Required:

  • libz.dylib
  • libstdc++.dylib

Show you like this:

Step4: config ur appKey and appSerect in the project's infoplist

image

Step5: Using API

In the SMSSDK file ,it contains all the API in the SDK, and here,you can use anyone that you wanted liking this:

  • Get verificationCode
[SMSSDK getVerificationCodeByMethod:SMSGetCodeMethodSMS phoneNumber:@"13800138000" zone:@"86" result:^(NSError *error) {

if (!error)
{
// 请求成功
}
else
{
// error
}
}];
  • commit
[SMSSDK commitVerificationCode:@"1234" phoneNumber:@"13800138000" zone:@"86" result:^(NSError *error) {

if (!error)
{
// 验证成功
}
else
{
// error
}
}];

If you want to see the chinese document,please click here !