OPQRCodeViewController.h 506 B

12345678910111213141516171819202122
  1. //
  2. // OPQRCodeViewController.h
  3. // RDHomeKit
  4. //
  5. // Created by SonWa on 15/7/15.
  6. // Copyright (c) 2015年 SonWa. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol OPQRCodeViewControllerDelegate <NSObject>
  10. - (void)rdy_didFinishPickingMediaWithInfo:(NSString *)stringValue;
  11. @end
  12. @interface OPQRCodeViewController : UIViewController
  13. @property (assign, nonatomic) id<OPQRCodeViewControllerDelegate> delegate;
  14. @property (nonatomic, assign) CGFloat topOffset; // ** 扫描框顶部偏移*/
  15. @end