修改自己送出礼物没有动画的问题

This commit is contained in:
fengshuo
2021-12-01 10:49:50 +08:00
committed by zu
parent 6ec0c5b323
commit c0c1f9932d

View File

@@ -267,6 +267,17 @@
}
}
//
- (void)sendMessage:(NIMMessage *)message didCompleteWithError:(NSError *)error {
NIMCustomObject *obj = (NIMCustomObject *)message.messageObject;
if (obj.attachment != nil && [obj.attachment isKindOfClass:[AttachmentModel class]]) {
AttachmentModel *attachment = (AttachmentModel *)obj.attachment;
if (attachment.first == CustomMessageType_Gift || attachment.first == CustomMessageType_ALLMicroSend) {
[self receiveGift:attachment];
}
}
}
#pragma mark -
- (void)microInvite:(NSString *)position {
if ([self findMicroViewByPosition:position]) {