wkwebview加載html的富文本(文字和圖片混合)

tableHeaderView上加載wkwebView作為頭部視圖并更新高度

//
//  ViewController.m
//  WKWebViewDemo
//
//  Created by Mac xk on 2019/10/25.
//  Copyright ? 2019 Mac xk. All rights reserved.
//

#import "ViewController.h"
#import <WebKit/WebKit.h>
#import "XKInformationHeaderView.h"
@interface ViewController ()<WKNavigationDelegate>
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (strong, nonatomic)XKInformationHeaderView *headView;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *tabHeightCons;

@end

@implementation ViewController
-(XKInformationHeaderView *)headView{
    if (!_headView) {
        _headView=[[[NSBundle mainBundle]loadNibNamed:@"XKInformationHeaderView" owner:self options:nil]firstObject];
        _headView.frame = [UIScreen mainScreen].bounds;
    }
    
    return _headView;
    
}
- (void)viewDidLoad {
    [super viewDidLoad];
  
    self.tableView.tableHeaderView = self.headView;
    self.headView.webHeightBlock = ^(CGFloat webH) {
    self.tabHeightCons.constant = webH+80+(([UIScreen mainScreen].bounds.size.width-22)*240/353);
//    self.headView.frame.size.height = self.tabHeightCons.constant;
         [self.tableView beginUpdates];
         [self.tableView setTableHeaderView:self.headView] ;
         [self.tableView endUpdates];
    };
    
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    
    return 1;
}



- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 0;
}

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{

     return 0.01;

    
}
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{

    return 0.01;
    
}

- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 0.01;
    
}

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellID = @"topicCellId";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (!cell ) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
    }
    return cell;
}


@end

tableHeaderView類

精準計算WKWebView中html內(nèi)容高度的方法
#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface XKInformationHeaderView : UIView
@property (weak, nonatomic) IBOutlet UIImageView *imgView;
@property (assign, nonatomic)CGFloat headerHeight;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *webVHeightCons;
@property(copy,nonatomic)void(^webHeightBlock)(CGFloat);
@end

NS_ASSUME_NONNULL_END
//
//  XKInformationHeaderView.m
//  eResidents
//
//  Created by Mac xk on 2019/9/17.
//  Copyright ? 2019 Jon Shi. All rights reserved.
//

#import "XKInformationHeaderView.h"
#import <WebKit/WebKit.h>

@interface XKInformationHeaderView ()
@property (weak, nonatomic) IBOutlet UIView *imgV;
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
@property (weak, nonatomic) IBOutlet UILabel *readLab;
@property (weak, nonatomic) IBOutlet UILabel *contentlab;
@property (weak, nonatomic) IBOutlet UIButton *shoucangBtn;
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
@property (strong, nonatomic) WKWebView *contenWebV;
@property (weak, nonatomic) IBOutlet UIView *backV;

@end
@implementation XKInformationHeaderView

-(void)awakeFromNib
{
    [super awakeFromNib];
      WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc]init];
     WKPreferences *preferences = [[WKPreferences alloc]init];

     preferences.javaScriptCanOpenWindowsAutomatically = true;

     //    圖片自適應(yīng)高度
     NSString *jSString = @"var objs = document.getElementsByTagName('img');for(var i=0;i++){var img = objs[i];img.style.maxWidth = '100%';img.style.height='auto';}";

     WKUserScript *wkUserScript = [[WKUserScript alloc]initWithSource:jSString injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];

     //    修改文字大小
     NSString*jScript =@"var meta = document.createElement('meta'); meta.setAttribute('name', 'viewport'); meta.setAttribute('content', 'width=device-width'); document.getElementsByTagName('head')[0].appendChild(meta);";

     WKUserScript *wkScript = [[WKUserScript alloc]initWithSource:jScript injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
     WKUserContentController *ucontroller = [[WKUserContentController alloc]init];
     [ucontroller addUserScript:wkUserScript];
     [ucontroller addUserScript:wkScript];
     configuration.preferences = preferences;
     WKWebView *wkWebView = [[WKWebView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, [UIScreen mainScreen].bounds.size.width, 0) configuration:configuration];
     NSString * htmlString = @"&lt;p style=\"white-space: normal; text-align: center;\"&gt;&lt;img src=\"http://main.xiekang.net/Scripts/ueditor1_4_3_3-utf8-net/utf8-net/net/upload/image/20180228/6365541345806039683723703.jpg\" title=\"1.jpg\" alt=\"1.jpg\"/&gt;&lt;/p&gt;&lt;p style=\"white-space: normal;\"&gt;&lt;img src=\"http://main.xiekang.net/Scripts/ueditor1_4_3_3-utf8-net/utf8-net/net/upload/image/20180228/6365541346671664682702027.jpg\" title=\"2.jpg\" alt=\"2.jpg\"/&gt;&lt;/p&gt;&lt;p style=\"white-space: normal;\"&gt;&lt;img src=\"http://main.xiekang.net/Scripts/ueditor1_4_3_3-utf8-net/utf8-net/net/upload/image/20180228/6365541348234164683642219.jpg\" title=\"3.jpg\" alt=\"3.jpg\"/&gt;&lt;/p&gt;&lt;p style=\"white-space: normal;\"&gt;&lt;img src=\"http://main.xiekang.net/Scripts/ueditor1_4_3_3-utf8-net/utf8-net/net/upload/image/20180228/6365541349057602186791886.jpg\" title=\"4.jpg\" alt=\"4.jpg\"/&gt;&lt;/p&gt;&lt;p style=\"white-space: normal;\"&gt;&lt;img src=\"http://main.xiekang.net/Scripts/ueditor1_4_3_3-utf8-net/utf8-net/net/upload/image/20180228/6365541349673227181637951.jpg\" title=\"5.jpg\" alt=\"5.jpg\"/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;";
     wkWebView.scrollView.bounces = NO;
     wkWebView.navigationDelegate = self;
     [wkWebView loadHTMLString:[self setAttributedString:htmlString].string baseURL:nil];
    [self.backV addSubview:wkWebView];

}

- (void)webView:(WKWebView *)webView didFinishNavigation:(null_unspecified WKNavigation *)navigation {
    [webView evaluateJavaScript:@"document.body.scrollHeight" completionHandler:^(id _Nullable result,NSError *_Nullable error) {
        //獲取頁面高度
        CGFloat height = [result doubleValue];
        NSLog(@"scrollHeight 即為所求:%f",height);
        webView.frame = CGRectMake(0, 91, [UIScreen mainScreen].bounds.size.width-22, height);
        self.webVHeightCons.constant = height;
          self.headerHeight = self.webVHeightCons.constant;
          if (self.webHeightBlock) {
              self.webHeightBlock(self.webVHeightCons.constant);
          }
        [self layoutIfNeeded];

        [self setNeedsLayout];
    }];
}

-(NSMutableAttributedString *)setAttributedString:(NSString *)str
{
    //如果有換行饺鹃,把\n替換成<br/>
    //如果有需要把換行加上
    str = [str stringByReplacingOccurrencesOfString:@"\n" withString:@"<br/>"];
    //設(shè)置HTML圖片的寬度
    str = [NSString stringWithFormat:@"<head><style>img{width:%f !important;height:auto}</style></head>%@",[UIScreen mainScreen].bounds.size.width,str];
    NSMutableAttributedString *htmlString =[[NSMutableAttributedString alloc] initWithData:[str dataUsingEncoding:NSUTF8StringEncoding] options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute:[NSNumber numberWithInt:NSUTF8StringEncoding]} documentAttributes:NULL error:nil];
//    //設(shè)置富文本字的大小
//    [htmlString addAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:16]} range:NSMakeRange(0, htmlString.length)];
//    //設(shè)置行間距
//    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
//    [paragraphStyle setLineSpacing:5];
//    [htmlString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [htmlString length])];
    
    return htmlString;
}
//-(void)setModel:(XKInfoEntityMod *)model
//{
//    _model = model;
//    self.titleLab.text = model.wikiName;
//    CGRect frame = CGRectMake(0, 91, KScreenWidth-22,0);
//    frame.size.height = 0;
//    self.contenWebV.frame = frame;
//     [self.contenWebV loadHTMLString:[self setAttributedString:model.content].string baseURL:nil];
//   
//}

- (IBAction)soucangAction:(id)sender {
    
 
}

@end

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末絮吵,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件铣卡,死亡現(xiàn)場離奇詭異链韭,居然都是意外死亡,警方通過查閱死者的電腦和手機煮落,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門敞峭,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人蝉仇,你說我怎么就攤上這事旋讹。” “怎么了轿衔?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵沉迹,是天一觀的道長。 經(jīng)常有香客問我害驹,道長鞭呕,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任宛官,我火速辦了婚禮葫松,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘底洗。我一直安慰自己腋么,他們只是感情好,可當我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布亥揖。 她就那樣靜靜地躺著珊擂,像睡著了一般。 火紅的嫁衣襯著肌膚如雪费变。 梳的紋絲不亂的頭發(fā)上胡控,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天昼激,我揣著相機與錄音橙困,去河邊找鬼凡傅。 笑死,一個胖子當著我的面吹牛明未,可吹牛的內(nèi)容都是我干的趟妥。 我是一名探鬼主播披摄,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼疚膊,長吁一口氣:“原來是場噩夢啊……” “哼寓盗!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤美澳,失蹤者是張志新(化名)和其女友劉穎制跟,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體聊记,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年舆床,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片谷暮。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡坷备,死狀恐怖省撑,靈堂內(nèi)的尸體忽然破棺而出俯在,到底是詐尸還是另有隱情跷乐,我是刑警寧澤愕提,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布浅侨,位于F島的核電站如输,受9級特大地震影響不见,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜缎谷,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望喻奥。 院中可真熱鬧润梯,春花似錦、人聲如沸寇钉。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽桶略。三九已至语淘,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間际歼,已是汗流浹背惶翻。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留鹅心,地道東北人吕粗。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像巴帮,于是被迫代替她去往敵國和親溯泣。 傳聞我的和親對象是個殘疾皇子虐秋,可洞房花燭夜當晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容

  • Swift1> Swift和OC的區(qū)別1.1> Swift沒有地址/指針的概念1.2> 泛型1.3> 類型嚴謹 對...
    cosWriter閱讀 11,089評論 1 32
  • 1.內(nèi)容優(yōu)化 (1)減少HTTP請求數(shù):這條策略是最重要最有效的榕茧,因為一個完整的請求要經(jīng)過DNS尋址,與服務(wù)器建立...
    qfstudy閱讀 122評論 0 0
  • 一大早趕去銀行辦了手續(xù)客给,騎上小單車跑到地鐵口用押,累的大腦都缺氧了。趕到東區(qū)出了地鐵口靶剑,顧不得呼吸大東區(qū)清新的空氣蜻拨,欣...
    aweness閱讀 74評論 0 1
  • “他才只有二十歲,他只是想活著桩引,他有什么罪缎讼!” 電影《我不是藥神》有無數(shù)感人至深的情節(jié),但是這位剛滿二十歲的少年坑匠,...
    是Alice啊閱讀 238評論 0 0