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;