JRTCSDK-iOS v2401.0
视频客服 API 文档
载入中...
搜索中...
未找到
JRTCVideoSize.h
1//
2// JRTCVideoSize.h
3// JRTCSDK
4//
5// Created by 杨象坤 on 2021/9/24.
6// Copyright © 2021 juphoon. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
15
17@interface JRTCVideoSize : NSObject
18
20@property (nonatomic) int width;
21
23@property (nonatomic) int height;
24
25- (instancetype)initWithSize:(int)width height:(int)height;
26
30- (NSDictionary *_Nullable)toDictionary;
31
32@end
33
35
36NS_ASSUME_NONNULL_END
视频尺寸
Definition: JRTCVideoSize.h:18
int width
视频宽
Definition: JRTCVideoSize.h:20
int height
视频高
Definition: JRTCVideoSize.h:23
NSDictionary *_Nullable toDictionary()