37 lines
793 B
Objective-C
Executable File
37 lines
793 B
Objective-C
Executable File
//
|
||
// BJWebVC.h
|
||
// buymore
|
||
//
|
||
// Created by yuebin on 2020/12/28.
|
||
// Copyright © 2020 JLC. All rights reserved.
|
||
//
|
||
|
||
#import "BaseController.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
|
||
@interface BJWebVC : BaseController
|
||
|
||
|
||
///选填: 0使用原生导航栏 1使用h5导航栏,标题从H5中取 2使用h5导航栏,网页全屏上下不留间隙
|
||
@property (nonatomic, assign) NSInteger useH5NavBar;
|
||
|
||
/// 选填:使用原生导航栏,需要赋值该属性
|
||
@property (nonatomic, copy) NSString *webName;
|
||
|
||
/// 必填:网址url
|
||
@property (nonatomic, copy) NSString *webUrl;
|
||
|
||
/// 强制使用传来的标题,不使用h5的
|
||
@property (nonatomic, assign) BOOL useSelfTitle;
|
||
|
||
/// 可选,在请求头里加东西
|
||
@property (strong, nonatomic) NSDictionary *httpHeadDict;
|
||
|
||
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|