AppDelegate.h 590 B

12345678910111213141516171819202122232425
  1. //
  2. // AppDelegate.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2018/12/29.
  6. // Copyright © 2018年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <AVFoundation/AVFoundation.h>
  10. static NSString *appKey= @"fe13061435f5517e3c551231";
  11. static NSString *channel = @"Publish channel";
  12. static BOOL isProduction = TRUE;
  13. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  14. @property (strong, nonatomic) UIWindow *window;
  15. //音频播放器
  16. @property(nonatomic,strong)AVAudioPlayer *player;
  17. +(void)LoginRootViewController;
  18. @end