12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // YOUPAILZLivePKAttachment.m
- // TIANYAN
- //
- // Created by CY on 2021/5/31.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import "YOUPAILZLivePKAttachment.h"
- @implementation YOUPAILZLivePKAttachment
- - (NSString *)encodeAttachment{
- NSDictionary *dict = @{
- CMEvent : CMEventWithPK,
- CMData : @{
- CMType: self.type?self.type:@"",
- CMFromRoomid: self.from_roomid?self.from_roomid:@"",
- CMFrom: self.from_uid?self.from_uid:@"",
- CMToRoomid: self.to_roomid?self.to_roomid:@"",
- CMTo: self.to_uid?self.to_uid:@"",
- CMId: self.id?self.id:@"",
- CMOperateUid: self.operate_uid?self.operate_uid:@"",
- }
- };
- NSData *data = [NSJSONSerialization dataWithJSONObject:dict
- options:0
- error:nil];
- NSString *content = nil;
- if (data) {
- content = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- }
- return content;
- }
- @end
|