TencentNavKit
TNKSnapShotResult.h
Go to the documentation of this file.
1//
2// TNKSnapShotResult.h
3// TencentNavKit
4//
5// Created on 2025/9/22.
6// Copyright © 2025 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <UIKit/UIKit.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
17@interface TNKSnapShotResult : NSObject
18
22@property (nonatomic, strong, readonly) UIImage *image;
23
27@property (nonatomic, assign, readonly) int version;
28
32@property (nonatomic, assign, readonly) NSTimeInterval timestamp;
33
37@property (nonatomic, assign, readonly) BOOL changed;
38
39@end
40
41NS_ASSUME_NONNULL_END
截图结果类
Definition: TNKSnapShotResult.h:18
UIImage * image
截图图像
Definition: TNKSnapShotResult.h:22
NSTimeInterval timestamp
截图时间戳
Definition: TNKSnapShotResult.h:32
BOOL changed
数据是否变更
Definition: TNKSnapShotResult.h:37
int version
版本信息
Definition: TNKSnapShotResult.h:27