Initial commit

This commit is contained in:
ifish
2017-08-15 16:59:01 +08:00
commit bdc83e07ef
5766 changed files with 423223 additions and 0 deletions
@@ -0,0 +1,20 @@
//
// NTESDemoConfig.h
// NIM
//
// Created by amao on 4/21/15.
// Copyright (c) 2015 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
//此处 apiURL 为网易云信 Demo 应用服务器地址,更换 appkey 后,请更新为应用自己的服务器接口地址,并提供相关接口服
@interface NTESDemoConfig : NSObject
+ (instancetype)sharedConfig;
@property (nonatomic,copy) NSString *appKey;
@property (nonatomic,copy) NSString *apiURL;
@property (nonatomic,copy) NSString *cerName;
@end