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