cell嵌套webView,cell高度自動調(diào)整 二

#import

@class BFCActCenterDetailModel;

@class BFCWonderfulModel;

@interfaceBFCWebScrollView :UIScrollView

@property(nonatomic,copy)void(^scrollViewBlock)(CGFloatheight);

@property (nonatomic, strong) BFCActCenterDetailModel *detailModel;

@property (nonatomic, strong) BFCWonderfulModel *wonderfullModel;

/**

?初始化無title的界面

?@param frame 尺寸

?*/

- (instancetype)initWithNotitleFrame:(CGRect)frame;

@end



#import "BFCWebScrollView.h"

#import "BFCActCenterDetailModel.h"

#import "BFCWonderfulModel.h"

#import

#import "NSObject+RACKVOWrapper.h"

@interface BFCWebScrollView ()<WKUIDelegate, WKNavigationDelegate>

@property (nonatomic, strong) WKWebView *webView;

@property (nonatomic, strong) UILabel *headerLabel;

@property (nonatomic, assign) CGFloat webViewHeight;

@property (nonatomic, assign) CGFloat index;

@property (nonatomic, assign) BOOL showTitle;

@end

@implementationBFCWebScrollView

- (UILabel*)headerLabel{

? ? if (!_headerLabel) {

? ? ? ? _headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 17, Main_Screen_Width, 20)];

? ? ? ? _headerLabel.text=@"圖文詳情";

? ? ? ? _headerLabel.textColor=RGB(74,74,74);

? ? ? ? _headerLabel.textAlignment = NSTextAlignmentCenter;

? ? ? ? _headerLabel.font = FONT(@"PingFangSC-Medium", 15);

? ? ? ? [selfaddSubview:_headerLabel];

? ? }

? ? return _headerLabel;

}

- (instancetype)initWithFrame:(CGRect)frame{

? ? if(self== [superinitWithFrame:frame]) {

? ? ? ? self.showTitle=YES;

? ? ? ? [self createWebView];

? ? ? ? self.webView.frame = CGRectMake(0, CGRectGetMaxY(self.headerLabel.frame)+10, Main_Screen_Width, 100);

? ? ? ? [RACObserve(self, detailModel)subscribeNext:^(BFCActCenterDetailModel*detailModel) {

? ? ? ? ? ? if(detailModel.details!=nil) {

? ? ? ? ? ? ? ? if([detailModel.detailshasPrefix:@"http"]) {

? ? ? ? ? ? ? ? ? ? [selfloadWebPage:detailModel.details];

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? else{

? ? ? ? ? ? ? ? ? ? [selfloadHtmlString:detailModel.details];

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? }];

? ? }

? ? return self;

}

- (instancetype)initWithNotitleFrame:(CGRect)frame{

? ? if(self== [superinitWithFrame:frame]) {

? ? ? ? self.showTitle=NO;

? ? ? ? [self createWebView];

? ? ? ? self.webView.frame=CGRectMake(0,0,Main_Screen_Width,TAMargin);

? ? ? ? [RACObserve(self, wonderfullModel)subscribeNext:^(BFCWonderfulModel*wonderfullModel) {

? ? ? ? ? ? if(wonderfullModel.content!=nil) {

? ? ? ? ? ? ? ? if([wonderfullModel.contenthasPrefix:@"http"]) {

? ? ? ? ? ? ? ? ? ? [selfloadWebPage:wonderfullModel.content];

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? else{

? ? ? ? ? ? ? ? ? ? [selfloadHtmlString:wonderfullModel.content];

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? }];

? ? }

? ? return self;

}

/**

?加載http

?*/

- (void)loadWebPage:(NSString*)urlStr {

? ? NSURL *url = [NSURL URLWithString:urlStr];

? ? NSURLRequest *request = [NSURLRequest requestWithURL:url];

? ? [self.webViewloadRequest:request];

}

/**

加載HTML字符串

?*/

- (void)loadHtmlString:(NSString*)string{

? ? // 自動適配圖片寬度

? ? NSString *header = @"img{max-width:100% !important;display:block;}";

? ? NSString*newStr = [NSStringstringWithFormat:@"%@%@",header,string];

? ? [self.webView loadHTMLString:newStr baseURL:nil];

}

/**

?加載本地HTML文件

?*/

- (void)loadLocalFile:(NSString*)localFile {

? ? NSURL *url = [[NSBundle mainBundle] URLForResource:localFile withExtension:nil];

? ? NSURLRequest *request = [NSURLRequest requestWithURL:url];

? ? [self.webViewloadRequest:request];

}

- (void)createWebView

{

? ? WKWebViewConfiguration *wkWebConfig = [[WKWebViewConfiguration alloc] init];

? ? WKUserContentController *wkUController = [[WKUserContentController alloc] init];

? ? wkWebConfig.userContentController= wkUController;

? ? // 自適應屏幕寬度js

? ? NSString *jSString = @"var meta = document.createElement('meta'); meta.setAttribute('name', 'viewport'); meta.setAttribute('content', 'width=device-width'); document.getElementsByTagName('head')[0].appendChild(meta);";

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

? ? // 添加js調(diào)用

? ? [wkUControlleraddUserScript:wkUserScript];


? ? self.webView = [[WKWebView alloc] initWithFrame:CGRectZero configuration:wkWebConfig];

? ? self.webView.backgroundColor = [UIColor clearColor];

? ? self.webView.opaque=NO;

? ? self.webView.userInteractionEnabled = NO;

? ? self.webView.scrollView.bounces = NO;

? ? self.webView.UIDelegate = self;

? ? self.webView.navigationDelegate = self;

? ? [self.webView sizeToFit];

? ? [self.webView.scrollView addObserver:self forKeyPath:@"contentSize" options:NSKeyValueObservingOptionNew context:nil];


//? ? [[self.webView.scrollView rac_valuesForKeyPath:@"contentSize" observer:self] subscribeNext:^(NSString x) {

//? ? ? ? //X 修改了? NSSize

//? ? ? ? NSLog(@"%@",x);

//? ? }];

//? ? [[self.webView.scrollView rac_valuesAndChangesForKeyPath:@"contentSize" options:NSKeyValueObservingOptionNew observer:self] subscribeNext:^(id x) {

//? ? }];

? ? [self addSubview:self.webView];

}

- (void)observeValueForKeyPath:(NSString*)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void*)context

{

? ? self.index++;

? ? // 執(zhí)行多次聪廉,但只做一次更改

//? ? if (self.webViewHeight == 0) {

? ? ? ? if([keyPathisEqualToString:@"contentSize"]) {

? ? ? ? ? ? UIScrollView*scrollView = (UIScrollView*)object;

? ? ? ? ? ? CGFloatheight = scrollView.contentSize.height;

? ? ? ? ? ? self.webViewHeight= height;

? ? ? ? ? ? if(self.showTitle) {

? ? ? ? ? ? ? ? self.webView.frame=CGRectMake(0,CGRectGetMaxY(self.headerLabel.frame) +10,Main_Screen_Width, height);

? ? ? ? ? ? }

? ? ? ? ? ? else{

? ? ? ? ? ? ? ? self.webView.frame=CGRectMake(0,0,Main_Screen_Width, height);

? ? ? ? ? ? }

? ? ? ? ? ? self.contentSize=CGSizeMake(Main_Screen_Width, height);

? ? ? ? ? ? if(self.scrollViewBlock) {

? ? ? ? ? ? ? ? self.scrollViewBlock(height);

? ? ? ? ? ? }

? ? ? ? }

//? ? }

? ? // 執(zhí)行五次后移除kvo 否則會一直執(zhí)行

? ? if(self.index>=5) {

? ? ? ? [self.webView.scrollView removeObserver:self forKeyPath:@"contentSize"];

? ? }

}

- (void)dealloc

{

? ? [self.webView.scrollView removeObserver:self forKeyPath:@"contentSize"];

? ? [self.webView stopLoading];

}

//-(void)webView:(WKWebView *)webView didFailNavigation:(WKNavigation *)navigation withError:(NSError *)error

//{

? ? // 沒效果

//? ? [self.webView.scrollView removeObserver:self forKeyPath:@"contentSize"];

//? ? if (error.code==-999) {

//? ? ? ? return;

//? ? }

//}

@end

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末坷澡,一起剝皮案震驚了整個濱河市饭入,隨后出現(xiàn)的幾起案子卸夕,更是在濱河造成了極大的恐慌,老刑警劉巖诊县,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件骡楼,死亡現(xiàn)場離奇詭異,居然都是意外死亡赴肚,警方通過查閱死者的電腦和手機素跺,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來誉券,“玉大人指厌,你說我怎么就攤上這事∮桓” “怎么了踩验?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我晰甚,道長衙传,這世上最難降的妖魔是什么决帖? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任厕九,我火速辦了婚禮,結(jié)果婚禮上地回,老公的妹妹穿的比我還像新娘扁远。我一直安慰自己,他們只是感情好刻像,可當我...
    茶點故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布畅买。 她就那樣靜靜地躺著,像睡著了一般细睡。 火紅的嫁衣襯著肌膚如雪谷羞。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天溜徙,我揣著相機與錄音湃缎,去河邊找鬼。 笑死蠢壹,一個胖子當著我的面吹牛嗓违,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播图贸,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼蹂季,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了疏日?” 一聲冷哼從身側(cè)響起偿洁,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎沟优,沒想到半個月后涕滋,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡净神,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年何吝,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片鹃唯。...
    茶點故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡爱榕,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出坡慌,到底是詐尸還是另有隱情黔酥,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站跪者,受9級特大地震影響棵帽,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜渣玲,卻給世界環(huán)境...
    茶點故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一逗概、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧忘衍,春花似錦逾苫、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至搀捷,卻和暖如春星掰,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背嫩舟。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工氢烘, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人至壤。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓威始,卻偏偏與公主長得像,于是被迫代替她去往敵國和親像街。 傳聞我的和親對象是個殘疾皇子黎棠,可洞房花燭夜當晚...
    茶點故事閱讀 43,543評論 2 349

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