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.
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.
Drag this folder into the project:
Required:
- libz.dylib
- libstdc++.dylib
In the SMSSDK file ,it contains all the API in the SDK, and here,you can use anyone that you wanted liking this:
[SMSSDK getVerificationCodeByMethod:SMSGetCodeMethodSMS phoneNumber:@"13800138000" zone:@"86" result:^(NSError *error) {
if (!error)
{
// 请求成功
}
else
{
// error
}
}];
[SMSSDK commitVerificationCode:@"1234" phoneNumber:@"13800138000" zone:@"86" result:^(NSError *error) {
if (!error)
{
// 验证成功
}
else
{
// error
}
}];