// // AFEWebGuideView.h // BioAuthEngine // // Created by yukun.tyk on 3/21/16. // Copyright © 2016 DTF. All rights reserved. // #import #import #import @protocol AFEWebGuideViewDelegate - (void)onButtonBegin:(BOOL)suitableType; - (void)onButtonCancel; @optional - (void)onLoadFinished:(BOOL)success; - (void)onH5Logger:(NSString *)h5Logger; - (void)onButtonAgreement; @end @interface AFEWebGuideView : UIView @property(strong,nonatomic) WKWebView *wkwebView; @property(nonatomic, assign)BOOL loaded; @property(nonatomic, strong)UIViewController *currentViewController; - (void)setWebGuideViewDelegate:(id)webGuideViewDeleage; - (void)setURL:(NSURL *)url; @end