Files
2025-08-08 11:05:33 +08:00

37 lines
793 B
Objective-C
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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