Commit b989f955c97340b46d3dda71b82d13484f932df4
1 parent
f19caec1
no message
Showing
2 changed files
with
4 additions
and
3 deletions
CNLiveEnvironment/Classes/CNLiveConst.h
| ... | ... | @@ -19,10 +19,11 @@ |
| 19 | 19 | #define AppStoreAppInfo @"https://itunes.apple.com/lookup?id=1337575478" |
| 20 | 20 | |
| 21 | 21 | // yes:显示欢迎页 no:不显示欢迎页 |
| 22 | -#define ShowGuideView @"no" | |
| 22 | +#define AppShowGuidePage @"no" | |
| 23 | 23 | |
| 24 | -//上传手机通讯录和 生成订单二维码时,DES加密key | |
| 24 | +//上传手机通讯录和生成订单二维码时,DES加密key | |
| 25 | 25 | #define kUploadContactsKey @"cnliveIm" |
| 26 | +#define AppDESKey @"cnliveIm" | |
| 26 | 27 | |
| 27 | 28 | //////////////////////////////////////////////////////// |
| 28 | 29 | //////////// 数据库---表名 | ... | ... |
CNLiveEnvironment/Classes/CNLiveEnvironmentManager.h
| ... | ... | @@ -99,7 +99,7 @@ typedef NS_ENUM(NSInteger, CNLiveEnvironmentType) { |
| 99 | 99 | * @abstract 初始化配置 |
| 100 | 100 | * @param isEnvironment 环境 |
| 101 | 101 | * @warning 必传参数 |
| 102 | - * 此方法环境默认为测试商店版,建议使用如下方法初始化. | |
| 102 | + * 在默认DEBUG环境下为测试商店版,建议使用如下方法初始化. | |
| 103 | 103 | * 在 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions; 方法中调用 |
| 104 | 104 | */ |
| 105 | 105 | + (void)setEnvironment:(CNLiveEnvironmentType)isEnvironment; | ... | ... |