UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
APicture.h
1//
2// APicture.h
3// UniPRT
4//
5
6#import <Foundation/Foundation.h>
7#import <UniPRT/IPicture.h>
8#import <UniPRT/Defaults.h>
9
10NS_ASSUME_NONNULL_BEGIN
11
25@interface APicture : NSObject <IPicture>
26
27- (instancetype)initWithStart:(id<IPoint>)start imageName:(NSString *)imageName;
28
29@property (nonatomic, strong) id<IRuler> Ruler;
30@property (nonatomic, strong) id<IPoint> Start;
31@property (nonatomic, copy) NSString *ImageName;
32
33@end
34
35NS_ASSUME_NONNULL_END
實現 IPicture 介面的抽象類。
定义 APicture.h:25
id< IRuler > Ruler
定义 APicture.h:29
NSString * ImageName
定义 APicture.h:31
id< IPoint > Start
定义 APicture.h:30
用于在標籤上放置圖像的圖片介面。
定义 IPicture.h:25