AppDelegate+sdk.h 456 B

1234567891011121314151617181920212223
  1. //
  2. // AppDelegate+sdk.h
  3. // Overseas Watch
  4. //
  5. // Created by 刘振兴 on 2023/11/28.
  6. // Copyright © 2023 BaH Cy. All rights reserved.
  7. //
  8. #import "AppDelegate.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AppDelegate (sdk)
  11. + (void)initSdk:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;
  12. + (void)initIQKeyboard;
  13. + (void)showAdvertising;
  14. + (void)monitorNetworking;
  15. + (void)create3DTouch;
  16. @end
  17. NS_ASSUME_NONNULL_END