123456789101112131415161718192021222324252627282930313233 |
- //
- // YOUPAILZChatRoomEmojiAttachment.m
- // VQU
- //
- // Created by CY on 2021/11/11.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAILZChatRoomEmojiAttachment.h"
- @implementation YOUPAILZChatRoomEmojiAttachment
- - (NSString *)encodeAttachment{
- NSDictionary *dict = @{
- CMType : @(CustomOnChatRoomEmoji),
- CMData : @{
- CMFrom: self.from_uid ? self.from_uid : @"",
- CMRoomId: self.roomid ? self.roomid : @"",
- CMImg: self.img ? self.img : @"",
- }
- };
- NSData *data = [NSJSONSerialization dataWithJSONObject:dict
- options:0
- error:nil];
- NSString *content = nil;
- if (data) {
- content = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- }
- return content;
- }
- @end
|