基础库
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

35 satır
833 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. [ZhiyingCommNative regist: self];
  8. [GeneratedPluginRegistrant registerWithRegistry:self];
  9. return [super application:application didFinishLaunchingWithOptions:launchOptions];
  10. }
  11. // 公共跳转方法
  12. - (void)openPage: (NSDictionary*)params {
  13. }
  14. - (void)openNativePage: (NSDictionary*)params {
  15. NSString *method = [params valueForKey:@"method"];
  16. if ([method isEqualToString: @""]) {
  17. }
  18. }
  19. // 获取设置
  20. - (NSDictionary*)getSetting {
  21. return @{
  22. // @"domain": @"http://120.76.175.204:8989"
  23. @"domain": @"http://192.168.0.113:5000"
  24. };
  25. }
  26. @end