//
|
// 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
|