You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
471 B
22 lines
471 B
1 year ago
|
//
|
||
|
// QDetailViewController.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2018/11/8.
|
||
|
// Copyright © 2018年 xTT. All rights reserved.
|
||
|
//
|
||
|
#import <WebKit/WebKit.h>
|
||
|
#import "baseViewController.h"
|
||
|
@interface QDetailViewController : baseViewController
|
||
|
|
||
|
@property (strong, nonatomic) WKWebView *webView;
|
||
|
/**
|
||
|
内容
|
||
|
*/
|
||
|
@property (strong, nonatomic) NSString *content;
|
||
|
@property (strong, nonatomic) NSString *titleStr;
|
||
|
@property (strong, nonatomic) NSString *url;
|
||
|
|
||
|
|
||
|
@end
|