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.中文官网
Current SMSSDK version
- iOS v3.2.3
中文集成文档
Usage
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 "mob_smssdk"
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.
Download SMSSDK_iOS
Step1: Download the SDK from here :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
- libc++.dylib (libstdc++.dylib这个库在XCode10之后以libc++替代)
Step4: config ur appKey and appSerect in the project's infoplist
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
}
}];