mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-23 04:09:19 +08:00
fix compile warning
https://stackoverflow.com/questions/18039275/retained-block-property-does-not-copy-the-block-use-copy-attribute-instead "Retain'ed block property does not copy the block - use copy attribute instead" Not sure if this should be `copy` or `strong`.
This commit is contained in:
parent
42714900ca
commit
81edea7935
@ -9,6 +9,6 @@
|
|||||||
|
|
||||||
@interface BarcodeScanPlugin : NSObject<FlutterPlugin, BarcodeScannerViewControllerDelegate>
|
@interface BarcodeScanPlugin : NSObject<FlutterPlugin, BarcodeScannerViewControllerDelegate>
|
||||||
|
|
||||||
@property(nonatomic, retain) FlutterResult result;
|
@property(nonatomic, copy) FlutterResult result;
|
||||||
@property (nonatomic, assign) UIViewController *hostViewController;
|
@property (nonatomic, assign) UIViewController *hostViewController;
|
||||||
@end
|
@end
|
||||||
|
Loading…
Reference in New Issue
Block a user