search

Home  >  Q&A  >  body text

objective-c - 这段代码报错:Missing context of method declaration

#import "RCTWeChat.h"

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
  return [[RCTWeChat shareInstance] handleOpenURL: url];
}

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
  return [[RCTWeChat shareInstance] handleOpenURL: url];
}
天蓬老师天蓬老师2762 days ago485

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-04-28 09:06:50

    I remember one difference between iOS8 and iOS9. You only need to implement one, so you have to judge the system of the device!

    reply
    0
  • Cancelreply