admin
2023-04-21 0b3a4aaf99ea251bc8e27b96115288f0988fcffe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
//  YTHsharedManger.h
//  PapayaPlayerDaqo
//
//  Created by 味口 on 15-6-17.
//  Copyright (c) 2015年 wgj. All rights reserved.
//  用来单例模式存UID 等等作用
 
#import <Foundation/Foundation.h>
 
@interface YTHsharedManger : NSObject
 
/**
 *  整个程序的Uid
 */
@property (nonatomic , nullable, strong) NSString *Uid;
 
/**
 *  网络状态 1:不可用    2:2g或3g   3:wifi环境
 */
@property (nonatomic , assign) NSInteger NetworkStatus;
@property (nonatomic , nullable, copy) NSString *searchTitle;
 
@property (nonatomic , nullable, strong) UIViewController *preController;
/// 首页广告位配置
@property (nonatomic , nullable, strong) NSDictionary *ad;
 
+ (YTHsharedManger *_Nonnull)startManger;
 
 
@end