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