Commit 351153c2 by zhangyunjie

1.1.0.1

parent 6b092d8e
......@@ -8,7 +8,7 @@
Pod::Spec.new do |s|
s.name = 'OffcnIMSDKiOS'
s.version = '1.1.0.0'
s.version = '1.1.0.1'
s.summary = 'OffcnIMSDKiOS.'
s.description = <<-DESC
......
......@@ -16,9 +16,13 @@ typedef void(^OffcnIMTotal_unread_number)(NSInteger num);
@interface OffcnIMChatListViewController : UIViewController
@property (nonatomic, assign) BOOL isNeedSearch;//是否需要搜索功能
@property (nonatomic, assign) BOOL isNavBarHidden;//是否隐藏导航
@property (nonatomic, assign) BOOL isNeedFitTabBarHeight;//是否需要适配TabBar的高度
/// 自定义UI
/// @param viewTopHeight (view top的高度,一级子视图传0,二级子视图传0.1或自定义高度)
/// @param viewBottomHeight (view bottom的高度)
/// @param isNeedSearch 是否需要搜索功能
-(void)setUIWithViewTopHeight:(CGFloat)viewTopHeight ViewBottomHeight:(CGFloat)viewBottomHeight isNeedSearch:(BOOL)isNeedSearch;
@property (nonatomic, assign) BOOL isShowNoWifiTip;//显示没网提示
......
......@@ -162,23 +162,25 @@ NS_ASSUME_NONNULL_BEGIN
@interface OffcnIMUserList_listModel : NSObject
@property (nonatomic, assign) NSInteger cell_type;//1:群发消息,2:单发消息
@property (nonatomic, copy) NSString *key;
@property (nonatomic, copy) NSString *avatar;
@property (nonatomic, copy) NSString *avatar_color;
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *remark;
@property (nonatomic, copy) NSString *sortChar;
@property (nonatomic, copy) NSString *sso_user_id;
@property (nonatomic, copy) NSString *type;
@property (nonatomic, copy) NSString *user_id;
@property (nonatomic, copy) NSString *username;
@property (nonatomic, strong) OffcnIMUserList_list_classesModel *classes;
@property (nonatomic, copy) NSString *key;//群ID
@property (nonatomic, strong) OffcnIMUserList_list_classesModel *classes;//群成员
@property (nonatomic, copy) NSString *avatar;//头像地址
@property (nonatomic, copy) NSString *sortChar;//无地址时头像展示一个字(暂无此功能)
@property (nonatomic, copy) NSString *avatar_color;//无地址时头像背景色(暂无此功能)
@property (nonatomic, copy) NSString *name;//名字
@property (nonatomic, copy) NSString *remark;//备注名
@property (nonatomic, copy) NSString *phone;//用户手机号
@property (nonatomic, copy) NSString *user_id;//用户ID
@property (nonatomic, copy) NSString *expand;//拓展字段
@property (nonatomic, assign) NSInteger expandH;//拓展字段
@end
@interface OffcnIMUserList_list_classesModel : NSObject
@property (nonatomic, copy) NSString *count;
@property (nonatomic, strong) NSMutableArray *name;
@property (nonatomic, copy) NSString *count;//成员人数
@property (nonatomic, strong) NSMutableArray *name;//成员名字
@end
NS_ASSUME_NONNULL_END
......@@ -9,7 +9,7 @@
#import <UIKit/UIKit.h>
#import "OffcnIMModel.h"
static const NSString *OffcnIMSDKiOSVersion = @"1.1.0.0";
static const NSString *OffcnIMSDKiOSVersion = @"1.1.0.1";
typedef NS_ENUM(NSUInteger, OffcnIMSDKReachabilityStatus) {
OffcnIMSDKReachabilityStatusNotReachable = 0,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment