基础组件库
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

36 lignes
897 B

  1. #import "AppDelegate.h"
  2. #import "GeneratedPluginRegistrant.h"
  3. #import <zhiying_comm/ZhiyingCommNative.h>
  4. @implementation AppDelegate
  5. - (BOOL)application:(UIApplication *)application
  6. didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  7. [GeneratedPluginRegistrant registerWithRegistry:self];
  8. // Override point for customization after application launch.
  9. [ZhiyingCommNative regist: self];
  10. return [super application:application didFinishLaunchingWithOptions:launchOptions];
  11. }
  12. // 公共跳转方法
  13. - (void)openPage: (NSDictionary*)params {
  14. }
  15. - (void)openNativePage: (NSDictionary*)params {
  16. NSString *method = [params valueForKey:@"method"];
  17. if ([method isEqualToString: @""]) {
  18. }
  19. }
  20. // 获取设置
  21. - (NSDictionary*)getSetting {
  22. return @{
  23. // @"domain": @"http://120.76.175.204:8989"
  24. @"domain": @"http://192.168.0.113:5000"
  25. };
  26. }
  27. @end