驱蚊app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 regels
291 B

  1. #import "WXApi.h"
  2. extern "C" {
  3. void WeChatRegisterApp(const char* appId) {
  4. NSString* nsAppId = [NSString stringWithUTF8String:appId];
  5. [WXApi registerApp:nsAppId universalLink:@"https://your.universal.link/"];
  6. }
  7. bool WeChatIsInstalled() {
  8. return [WXApi isWXAppInstalled];
  9. }
  10. }