// // IPUTemplateNavigateController.h // IPUMobile // // Created by 秋林 on 2019/1/15. // Copyright © 2019 Asiainfo. All rights reserved. // #import "IPUTemplateViewController.h" #import "IPUCustomContent.h" @class IPUPlugin, IPUPopover; @interface IPUTemplateNavigateController : IPUTemplateViewController { IPUPopover *wdPopover; IPUCustomContent *wdContent; } @property (nonatomic, strong) IPUPlugin* plugin; @property (nonatomic, copy) NSString *openUrlStr; @property (nonatomic, copy) NSString *callback; @property (nonatomic, copy) NSString *navTitle; @property (nonatomic, copy) NSArray *operates; @property (nonatomic, copy) NSArray *colors; @property (nonatomic, assign) BOOL hiddenNavigationBar; @property (nonatomic, assign) BOOL backVisible; @property (nonatomic, assign) BOOL closeVisible; @property (nonatomic, assign) BOOL moreVisible; @property (nonatomic, assign) BOOL refreshVisible; - (id)initWithUrl:(NSString *)url Callback:(NSString *)callback Title:(NSString *)title Operates:(NSArray *)operates Colors:(NSArray *)colors; /* 通过参数控制是否显示导航栏:隐藏导航栏的情况会显示悬浮按钮 */ - (id)initWithUrl:(NSString *)url Callback:(NSString *)callback Title:(NSString *)title Operates:(NSArray *)operates Colors:(NSArray *)colors Hidden:(BOOL)hidden; @end