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.
24 lines
673 B
24 lines
673 B
// |
|
// 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) IBOutlet UILabel *titleLabel; |
|
@property (strong, nonatomic) WKWebView *webView; |
|
/** |
|
内容 |
|
*/ |
|
@property (strong, nonatomic) NSString *content; |
|
@property (strong, nonatomic) NSString *titleStr; |
|
@property (strong, nonatomic) NSString *url; |
|
@property (strong, nonatomic) IBOutlet UIView *contentView; |
|
|
|
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *contentViewHeightNSLC; |
|
|
|
@end
|
|
|