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