1234567891011121314151617181920212223242526272829303132 |
- //
- // YOUPAILZLiveCloseAttachment.m
- // TIANYAN
- //
- // Created by CY on 2021/5/26.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import "YOUPAILZLiveCloseAttachment.h"
- @implementation YOUPAILZLiveCloseAttachment
- - (NSString *)encodeAttachment{
- NSDictionary *dict = @{
- CMType : @(CustomOnLiveClose),
- CMData : @{
- CMRoomId: self.roomid?self.roomid:@"",
- }
- };
- NSData *data = [NSJSONSerialization dataWithJSONObject:dict
- options:0
- error:nil];
- NSString *content = nil;
- if (data) {
- content = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- }
- return content;
- }
- @end
|