Commit 270333a5cda09e38dd76993b0645c92e78e98681
1 parent
8be7a8f5
添加优惠券消息
Showing
6 changed files
with
34 additions
and
14 deletions
CNLiveNewIMAManagerKit.podspec
CNLiveNewIMAManagerKit/Classes/Playform/IMAConversationManager.m
| ... | ... | @@ -1095,7 +1095,7 @@ |
| 1095 | 1095 | } |
| 1096 | 1096 | else if ([dic[@"type"] integerValue] == CustomMsgTypeScanPaySuccess) |
| 1097 | 1097 | { |
| 1098 | - //扫码支付成功 | |
| 1098 | + //扫码支付成功/普通支付成功 | |
| 1099 | 1099 | [[NSNotificationCenter defaultCenter] postNotificationName:kIMAMSG_ScanPaySuccessNotification object:nil userInfo:dic]; |
| 1100 | 1100 | isBreak = YES; |
| 1101 | 1101 | } | ... | ... |
CNLiveNewIMAManagerKit/Classes/PublicHeader/IMANotification.h
| ... | ... | @@ -169,7 +169,7 @@ static NSString *const kIMAMSG_OnNewMessageNotification = @"kIMAMSG_OnNewMessage |
| 169 | 169 | |
| 170 | 170 | #pragma mark 社区支付成功 |
| 171 | 171 | static NSString *const kIMAMSG_CommunityPaySuccessNotification = @"kIMAMSG_CommunityPaySuccessNotification"; |
| 172 | -#pragma mark 扫码支付成功 | |
| 172 | +#pragma mark 扫码支付成功/普通支付成功 | |
| 173 | 173 | static NSString *const kIMAMSG_ScanPaySuccessNotification = @"kIMAMSG_ScanPaySuccessNotification"; |
| 174 | 174 | |
| 175 | 175 | #pragma mark 收到家园群消息 | ... | ... |
CNLiveNewIMAManagerKit/Classes/TIMCategory/TIMElem+ShowAPIs.m
| ... | ... | @@ -572,6 +572,10 @@ |
| 572 | 572 | { |
| 573 | 573 | return [NSClassFromString(@"CNFamilyGiftMessageCell") class]; |
| 574 | 574 | } |
| 575 | + else if (msg.type == EIMAMSG_ShareCoupon) | |
| 576 | + { | |
| 577 | + return [NSClassFromString(@"CNMessageBaseCell") class]; | |
| 578 | + } | |
| 575 | 579 | else |
| 576 | 580 | { |
| 577 | 581 | return [NSClassFromString(@"CNUnknownMsgCell") class]; |
| ... | ... | @@ -873,6 +877,11 @@ |
| 873 | 877 | { |
| 874 | 878 | return CGSizeMake(width, (36 +10)*RATIO); |
| 875 | 879 | } |
| 880 | + break; | |
| 881 | + case EIMAMSG_ShareCoupon: | |
| 882 | + { | |
| 883 | + return CGSizeMake(width, 160); | |
| 884 | + } | |
| 876 | 885 | default: |
| 877 | 886 | break; |
| 878 | 887 | } | ... | ... |
CNLiveNewIMAManagerKit/Classes/TIMModel/MSG/IMAMsg.h
| ... | ... | @@ -111,6 +111,10 @@ typedef NS_ENUM(NSInteger, IMAMSGType) { |
| 111 | 111 | ///家园礼物未领取 |
| 112 | 112 | EIMAMSG_FamilyGift , |
| 113 | 113 | |
| 114 | +#pragma mark 领取商家优惠券 | |
| 115 | + ///领取商家优惠券 | |
| 116 | + EIMAMSG_ShareCoupon , | |
| 117 | + | |
| 114 | 118 | #pragma mark 电商原生商品详情,电商原生订单详情 |
| 115 | 119 | EIMAMSG_ShopGoodsInfo , //电商原生商品详情 |
| 116 | 120 | EIMAMSG_ShopOrderDetail , //电商原生订单详情 |
| ... | ... | @@ -123,6 +127,7 @@ typedef NS_ENUM(NSInteger, IMAMSGType) { |
| 123 | 127 | EIMAMSG_OrederReminder , //推单 |
| 124 | 128 | EIMAMSG_NewOrderRemind , //新订单提醒 |
| 125 | 129 | |
| 130 | + | |
| 126 | 131 | }; |
| 127 | 132 | |
| 128 | 133 | |
| ... | ... | @@ -201,17 +206,23 @@ typedef NS_ENUM(NSUInteger, CustomMsgType) { |
| 201 | 206 | CustomMsgTypeUGCLivePlayShare = 4005, //UGC直播分享 |
| 202 | 207 | CustomMsgTypeUGCLivePlayEnd = 4006, //UGC直播结束 |
| 203 | 208 | CustomMsgTypeUGCLiveGoodsListUpate = 4007, //UGC直播间商品列表发生更新 |
| 204 | - CustomMsgTypeScanCodePay = 5001, //扫码支付消息 | |
| 209 | + | |
| 205 | 210 | CustomMsgTypeShareLink = 6001, //分享链接 |
| 206 | 211 | |
| 207 | 212 | CustomMsgTypeCustomFace = 7000, //自定义表情 |
| 208 | 213 | |
| 209 | 214 | CustomMsgTypeBlackTip = 6002, //被拉黑后,发送消息进行提示 |
| 210 | 215 | |
| 211 | - CustomMsgTypeBlackStatusChange = 5003, //添加或者移除黑名单,系统通知 | |
| 212 | 216 | |
| 213 | - ///扫码支付成功 | |
| 217 | + ///扫码支付消息 | |
| 218 | + CustomMsgTypeScanCodePay = 5001, | |
| 219 | + | |
| 220 | + ///扫码支付成功/普通支付成功 | |
| 214 | 221 | CustomMsgTypeScanPaySuccess = 5002, |
| 222 | + | |
| 223 | + ///添加或者移除黑名单,系统通知 | |
| 224 | + CustomMsgTypeBlackStatusChange = 5003, | |
| 225 | + | |
| 215 | 226 | ///社区支付成功 |
| 216 | 227 | CustomMsgTypeCommunityPaySuccess = 5004, |
| 217 | 228 | |
| ... | ... | @@ -219,17 +230,13 @@ typedef NS_ENUM(NSUInteger, CustomMsgType) { |
| 219 | 230 | CustomMsgTypePhotoAlbumDynamic = 5005, |
| 220 | 231 | ///家园礼物未领取 |
| 221 | 232 | CustomMsgTypeFamilyGift = 5006, |
| 222 | - | |
| 223 | 233 | ///家园信息变更消息 |
| 224 | 234 | CustomMsgTypeFamilyInfoChange = 5007, |
| 235 | + ///领取商家优惠券消息 | |
| 236 | + CustomMsgTypeShareCoupon = 5008, | |
| 225 | 237 | |
| 226 | - CustomMsgTypeSendCurrentLocation = 8000, // 发送当前位置 | |
| 227 | - | |
| 228 | -// CustomMsgTypeInitiatingSharedLocation = 8001, //发起位置共享 | |
| 229 | -// CustomMsgTypeCurrentSharedLocation = 8002, //共享位置:发送当前位置 | |
| 230 | -// CustomMsgTypeSharedLocationEndTip = 8003,//共享位置结束后发送消息进行提示 | |
| 231 | - | |
| 232 | - | |
| 238 | + /// 发送当前位置 | |
| 239 | + CustomMsgTypeSendCurrentLocation = 8000, | |
| 233 | 240 | |
| 234 | 241 | #pragma mark - 音视频 |
| 235 | 242 | CustomMsgTypeSenderInvitationReceiver = 9001, //发送方向接收方发起音视频邀请 | ... | ... |
CNLiveNewIMAManagerKit/Classes/TIMModel/MSG/IMAMsg.m