Files
featherVoice/QXLive/Base/QXBaseWebViewController.h

24 lines
484 B
C
Raw Permalink Normal View History

2025-08-08 10:49:36 +08:00
//
// TBaseWebViewController.h
// YSDTrucksProject
//
// Created by 党凯 on 2020/7/3.
// Copyright © 2020 党凯. All rights reserved.
//
#import "QXBaseViewController.h"
NS_ASSUME_NONNULL_BEGIN
@interface QXBaseWebViewController : QXBaseViewController
//网页链接
@property(nonatomic,copy)NSString *urlStr;
//html内容
@property(nonatomic,copy)NSString *content;
/** 进度条颜色 */
@property (nonatomic, assign) UIColor *progressColor;
@end
NS_ASSUME_NONNULL_END