12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // NIMKitInfo.h
- // NIMKit
- //
- // Created by amao on 2016/11/17.
- // Copyright © 2016年 NetEase. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface NIMKitInfo : NSObject
- /**
- * id,如果是用户信息,为用户id;如果是群信息,为群id
- */
- @property (nonatomic,copy) NSString *infoId;
- /**
- * 显示名
- */
- @property (nonatomic,copy) NSString *showName;
- //如果avatarUrlString为nil,则显示头像图片
- //如果avatarUrlString不为nil,则将头像图片当做占位图,当下载完成后显示头像url指定的图片。
- /**
- * 头像url
- */
- @property (nonatomic,copy) NSString *avatarUrlString;
- /**
- * 头像图片
- */
- @property (nonatomic,strong) UIImage *avatarImage;
- @end
|