UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
IPicture.h
1//
2// IPicture.h
3// UniPRT
4//
5
6#import <Foundation/Foundation.h>
7#import <UniPRT/IPoint.h>
8#import <UniPRT/IRuler.h>
9
10NS_ASSUME_NONNULL_BEGIN
11
25@protocol IPicture <NSObject>
26
30@property (nonatomic, strong) id<IRuler> Ruler;
31
35@property (nonatomic, strong) id<IPoint> Start;
36
40@property (nonatomic, copy) NSString *ImageName;
41
42@optional
43- (NSString *)description;
44
45@end
46
47NS_ASSUME_NONNULL_END
48
NSString * ImageName
定义 IPicture.h:40
id< IRuler > Ruler
定义 IPicture.h:30
NSString * description()
id< IPoint > Start
定义 IPicture.h:35