You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

174 lines
5.8 KiB

//
// XHMessage.h
// MessageDisplayExample
//
// Created by HUAJIE-1 on 14-4-24.
// Copyright (c) 2014年 嗨,我是曾宪华(@xhzengAIB),曾加入YY Inc.担任高级移动开发工程师,拍立秀App联合创始人,热衷于简洁、而富有理性的事物 QQ:543413507 主页:http://zengxianhua.com All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
#import "XHMessageModel.h"
#import "BaseModel.h"
@interface XHMessage : BaseModel <XHMessageModel, NSCoding, NSCopying>
@property (nonatomic, copy) NSString *text;
@property (nonatomic, strong) UIImage *photo;
@property (nonatomic, copy) NSString *thumbnailUrl;
@property (nonatomic, copy) NSString *originPhotoUrl;
@property (nonatomic, strong) UIImage *videoConverPhoto;
@property (nonatomic, copy) NSString *videoPath;
@property (nonatomic, copy) NSString *videoUrl;
@property (nonatomic, copy) NSString *voicePath;
@property (nonatomic, copy) NSString *voiceUrl;
@property (nonatomic, copy) NSString *voiceDuration;
@property (nonatomic, copy) NSString *emotionPath;
@property (nonatomic, strong) UIImage *localPositionPhoto;
@property (nonatomic, copy) NSString *geolocations;
@property (nonatomic, strong) CLLocation *location;
@property (nonatomic, strong) UIImage *avatar;
@property (nonatomic, copy) NSString *avatarUrl;
@property (nonatomic, copy) NSString *sender;
@property (nonatomic, strong) NSDate *timestamp;
@property (nonatomic, assign) BOOL shouldShowUserName;
@property (nonatomic, assign) BOOL sended;
@property (nonatomic, assign) XHBubbleMessageMediaType messageMediaType;
@property (nonatomic, assign) XHBubbleMessageType bubbleMessageType;
@property (nonatomic) BOOL isRead;
@property (nonatomic, copy) NSString *senderID;
@property (nonatomic, copy) NSString *Id;
/// string example: 发送者类型:1.用户,2.设备
@property (nonatomic ,assign) NSInteger sendType;
/**
* 初始化文本消息
*
* @param text 发送的目标文本
* @param sender 发送者的名称
* @param date 发送的时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithText:(NSString *)text
sender:(NSString *)sender
timestamp:(NSDate *)timestamp;
/**
* 初始化图片类型的消息
*
* @param photo 目标图片
* @param thumbnailUrl 目标图片在服务器的缩略图地址
* @param originPhotoUrl 目标图片在服务器的原图地址
* @param sender 发送者
* @param date 发送时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithPhoto:(UIImage *)photo
thumbnailUrl:(NSString *)thumbnailUrl
originPhotoUrl:(NSString *)originPhotoUrl
sender:(NSString *)sender
timestamp:(NSDate *)timestamp;
/**
* 初始化视频类型的消息
*
* @param videoConverPhoto 目标视频的封面图
* @param videoPath 目标视频的本地路径,如果是下载过,或者是从本地发送的时候,会存在
* @param videoUrl 目标视频在服务器上的地址
* @param sender 发送者
* @param date 发送时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithVideoConverPhoto:(UIImage *)videoConverPhoto
videoPath:(NSString *)videoPath
videoUrl:(NSString *)videoUrl
sender:(NSString *)sender
timestamp:(NSDate *)timestamp;
/**
* 初始化语音类型的消息
*
* @param voicePath 目标语音的本地路径
* @param voiceUrl 目标语音在服务器的地址
* @param voiceDuration 目标语音的时长
* @param sender 发送者
* @param date 发送时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithVoicePath:(NSString *)voicePath
voiceUrl:(NSString *)voiceUrl
voiceDuration:(NSString *)voiceDuration
sender:(NSString *)sender
timestamp:(NSDate *)timestamp;
/**
* 初始化语音类型的消息。增加已读未读标记
*
* @param voicePath 目标语音的本地路径
* @param voiceUrl 目标语音在服务器的地址
* @param voiceDuration 目标语音的时长
* @param sender 发送者
* @param date 发送时间
* @param isRead 已读未读标记
*
* @return 返回Message model 对象
*/
- (instancetype)initWithVoicePath:(NSString *)voicePath
voiceUrl:(NSString *)voiceUrl
voiceDuration:(NSString *)voiceDuration
sender:(NSString *)sender
timestamp:(NSDate *)timestamp
isRead:(BOOL)isRead;
/**
* 初始化gif表情类型的消息
*
* @param emotionPath 表情的路径
* @param sender 发送者
* @param timestamp 发送时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithEmotionPath:(NSString *)emotionPath
sender:(NSString *)sender
timestamp:(NSDate *)timestamp;
/**
* 初始化地理位置的消息
*
* @param localPositionPhoto 地理位置默认显示的图
* @param geolocations 地理位置的信息
* @param location 地理位置的经纬度
* @param sender 发送者
* @param timestamp 发送时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithLocalPositionPhoto:(UIImage *)localPositionPhoto
geolocations:(NSString *)geolocations
location:(CLLocation *)location
sender:(NSString *)sender
timestamp:(NSDate *)timestamp;
@end