LLFans.m 334 B

123456789101112131415161718192021
  1. //
  2. // LLFans.m
  3. // BuguLive
  4. //
  5. // Created by 志刚杨 on 2019/11/2.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import "LLFans.h"
  9. @implementation LLFans
  10. +(BOOL)isLikeMe
  11. {
  12. if(![[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"wechat://"]])
  13. {
  14. return NO;
  15. }
  16. return YES;
  17. }
  18. @end