1234567891011121314151617181920212223242526272829303132 |
- //
- // YOUPAILZChatRoomTransferPlayAttachment.m
- // YOUQU
- //
- // Created by CY on 2021/12/14.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAILZChatRoomTransferPlayAttachment.h"
- @implementation YOUPAILZChatRoomTransferPlayAttachment
- - (NSString *)encodeAttachment{
- NSDictionary *dict = @{
- CMType : @(CustomOnChatRoomTransferPlay),
- CMData : @{
- CMType:self.type?self.type:@"",
- CMBlindStatus:self.blind_status?self.blind_status:@[]
- }
- };
- NSData *data = [NSJSONSerialization dataWithJSONObject:dict
- options:0
- error:nil];
- NSString *content = nil;
- if (data) {
- content = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- }
- return content;
- }
- @end
|