CommonOC.m 724 B

12345678910111213141516171819202122232425
  1. //
  2. // CommonOC.m
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2017/11/10.
  6. // Copyright © 2017年 Virgil. All rights reserved.
  7. //
  8. #import "CommonOC.h"
  9. @implementation CommonOC
  10. +(void) setUM
  11. {
  12. [UMSocialUIManager setPreDefinePlatforms:@[@(UMSocialPlatformType_QQ),@(UMSocialPlatformType_WechatSession),@(UMSocialPlatformType_WechatTimeLine),@(UMSocialPlatformType_Qzone)]];
  13. }
  14. +(void) setUMWX
  15. {
  16. [UMSocialUIManager setPreDefinePlatforms:@[@(UMSocialPlatformType_WechatSession),@(UMSocialPlatformType_WechatTimeLine)]];
  17. }
  18. +(void) setUMCus
  19. {
  20. [UMSocialUIManager setPreDefinePlatforms:@[@(UMSocialPlatformType_WechatSession),@(UMSocialPlatformType_WechatTimeLine),@(UMSocialPlatformType_UserDefine_Begin)]];
  21. }
  22. @end