34 lines
1.1 KiB
Objective-C
34 lines
1.1 KiB
Objective-C
//
|
|
// AppDelegate.h
|
|
// DingDangApp
|
|
//
|
|
// Created by liang on 2023/5/26.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class WLCoustomTabBarController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
+ (AppDelegate* )getAppdelegate;
|
|
@property (nonatomic,strong) NSString *deviceToken;
|
|
//首页获取位置权限 发布动态需要
|
|
@property (nonatomic,copy) NSString * longitude;
|
|
@property (nonatomic,copy) NSString * latitude;
|
|
@property (nonatomic,copy) NSString * locationCity;
|
|
@property (nonatomic,copy) NSString * provinceStr;
|
|
@property (nonatomic,copy) NSString * countyStr;
|
|
@property (nonatomic,copy) NSString * addressStr;
|
|
@property (nonatomic, assign) BOOL isLocation;
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
/**Tabbar*/
|
|
@property (nonatomic,strong) WLCoustomTabBarController *tabBarController;
|
|
//是否在房间
|
|
@property (nonatomic, assign) BOOL inRoom;
|
|
@property (nonatomic,assign) BOOL POPUP;
|
|
@property (nonatomic,assign) BOOL alertViewIsShow;
|
|
@property (nonatomic,assign) BOOL ISConversationList;
|
|
@property (nonatomic, copy) NSString *ms_user_id;
|
|
@property (nonatomic, copy) NSString * gyUid;//个推闪验uid
|
|
@end
|
|
|