12345678910111213141516171819202122232425262728293031 |
- //
- // YOUPAILZChatRoomBgImgAttachment.m
- // MSYOUPAI
- //
- // Created by CY on 2022/1/8.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import "YOUPAILZChatRoomBgImgAttachment.h"
- @implementation YOUPAILZChatRoomBgImgAttachment
- - (NSString *)encodeAttachment{
- NSDictionary *dict = @{
- CMType : @(CustomOnChatRoomSetterBackgoundImage),
- CMData : @{
- CMBg:self.bg?self.bg:@"",
- }
- };
- NSData *data = [NSJSONSerialization dataWithJSONObject:dict
- options:0
- error:nil];
- NSString *content = nil;
- if (data) {
- content = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- }
- return content;
- }
- @end
|