12345678910111213141516171819202122232425 |
- //
- // CommonOC.m
- // CommonFrame
- //
- // Created by Virgil on 2017/11/10.
- // Copyright © 2017年 Virgil. All rights reserved.
- //
- #import "CommonOC.h"
- @implementation CommonOC
- +(void) setUM
- {
- [UMSocialUIManager setPreDefinePlatforms:@[@(UMSocialPlatformType_QQ),@(UMSocialPlatformType_WechatSession),@(UMSocialPlatformType_WechatTimeLine),@(UMSocialPlatformType_Qzone)]];
- }
- +(void) setUMWX
- {
- [UMSocialUIManager setPreDefinePlatforms:@[@(UMSocialPlatformType_WechatSession),@(UMSocialPlatformType_WechatTimeLine)]];
- }
- +(void) setUMCus
- {
- [UMSocialUIManager setPreDefinePlatforms:@[@(UMSocialPlatformType_WechatSession),@(UMSocialPlatformType_WechatTimeLine),@(UMSocialPlatformType_UserDefine_Begin)]];
- }
- @end
|