選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

RNBluetoothEscposPrinter.h 519B

12345678910111213141516
  1. #import <React/RCTBridgeModule.h>
  2. #import "RNBluetoothManager.h";
  3. @interface RNBluetoothEscposPrinter : NSObject <RCTBridgeModule,WriteDataToBleDelegate>
  4. @property (nonatomic,assign) NSInteger deviceWidth;
  5. -(void) textPrint:(NSString *) text
  6. inEncoding:(NSString *) encoding
  7. withCodePage:(NSInteger) codePage
  8. widthTimes:(NSInteger) widthTimes
  9. heightTimes:(NSInteger) heightTimes
  10. fontType:(NSInteger) fontType
  11. delegate:(NSObject<WriteDataToBleDelegate> *) delegate;
  12. @end