MLKStroke
@interface MLKStroke : NSObject
表示笔(响应轻触)向下和笔触(响应轻触)之间的一系列接触点 事件。
-
接触点列表,格式为
StrokePoint
。声明
Objective-C
@property (nonatomic, readonly) NSArray<MLKStrokePoint *> *_Nonnull points;
-
不可用。请改用
init(points:)
。声明
Objective-C
- (nonnull instancetype)init;
-
使用提供的接触点序列初始化并返回
Stroke
对象。声明
Objective-C
- (nonnull instancetype)initWithPoints: (nonnull NSArray<MLKStrokePoint *> *)points;