JMEnumBlock.h
IntroductionUse the links in the table of contents to the left to access the documentation. TypedefsJMCompletetypedef void(^JMComplete)( NSError *_Nullable error); ParametersDiscussion完成回调 JMDiscoverBletypedef void(^JMDiscoverBle)( NSError *_Nullable error, CBPeripheral *_Nullable peripheral, NSDictionary<NSString *,id> * _Nullable advertisementData, NSNumber *_Nullable RSSI); ParametersDiscussion发现外设 JMDiscoverWifitypedef void(^JMDiscoverWifi)( NSError *_Nullable error, NSString *_Nullable macStr, NSString *_Nullable ipStr, NSString *_Nullable subnetMask, NSDictionary *_Nullable otherDic); ParametersDiscussion发现外设回调 JMPrinterTypetypedef enum { JMNone = 0, // 打印机类型不明 JMNeedle9, // 9 针打印机 JMNeedel24, // 24 针打印机 JMThermal, // 热敏打印机 JMInkjet // 喷墨打印机 }JMPrinterType; Discussion打印机类型 @code JMNone = 0 // 打印机类型不明 JMNeedle9 // 9 针打印机 JMNeedel24 // 24 针打印机 JMThermal // 热敏打印机 JMInkjet // 喷墨打印机 @endcode JMStatustypedef void(^JMStatus)( NSError *_Nullable error, NSData *_Nullable status); ParametersDiscussion打印机状态 JMTransformCompletedtypedef void(^JMTransformCompleted)( NSError *_Nullable error, NSData *_Nullable data); ParametersDiscussion数据转换完成回调 |