PDF编辑

### 类名:WS_PDFView ``` /** 设置手写笔类型 @param penType WSVStateNormal 浏览模式 WSVStateHandwrite 手写模式 WSVStateErase 擦除模式 WSVStateRectangle 矩形 WSVStateOval 椭圆 */ - (void)WS_Method_SetPenType:(WSVerticalReaderState)penType; ``` ``` /// 设置矩形/椭圆 的 颜色 /// @param color 颜色 - (void)WS_Method_setShapeColor:(UIColor *_Nonnull)color; /// 设置矩形/椭圆 的 线宽 /// @param lineWidth 1~ - (void)WS_Method_setShapeWidth:(float)lineWidth; ``` ``` /** 设置手写笔颜色 */ - (void)WS_Method_SetPenColor:(UIColor *_Nonnull)color; /** 设置手写笔粗细 */ - (void)WS_Method_SetPenThickness:(int)penThickness; ``` ``` /** 清除当前页的笔迹 */ - (void)WS_Method_ClearCurrentPageLines; ``` ``` /// 清除当前PDF所有未提交的签字数据 - (void)WS_Method_ClearCurrentFileAllSignData; ``` ``` /** 插入文本 */ - (void)WS_Method_InsertText; ``` ``` /** 插入签字 */ - (void)WS_Method_InsertSign; ``` ``` /** 从相册插入图片 */ - (void)WS_Method_InsertPhotoFromAlbum; ``` ``` /** 从相机拍照插入图片 */ - (void)WS_Method_InsertPhotoFromCamera; ``` ``` /// 是否有未提交的数据 - (BOOL)WS_Method_HaveUnSubmitData; ```