| 12345678910111213141516171819202122232425 |
- //
- // AppDelegate.h
- // Haishenghai-master
- //
- // Created by GG on 2018/12/29.
- // Copyright © 2018年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <AVFoundation/AVFoundation.h>
- static NSString *appKey= @"fe13061435f5517e3c551231";
- static NSString *channel = @"Publish channel";
- static BOOL isProduction = TRUE;
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- //音频播放器
- @property(nonatomic,strong)AVAudioPlayer *player;
- +(void)LoginRootViewController;
- @end
|