{
UIView*view;
UIImageView*image;
CGFloatwebViewHeight;
}
- (void)viewDidLoad {
[superviewDidLoad];
self.table= [[UITableViewalloc]initWithFrame:CGRectMake(0,CGRectGetMaxY(self.webView.frame),kScreenWidth,kScreenHeight- self.tabBarController.tabBar.frame.size.height)];
self.table.delegate=self;
self.table.dataSource=self;
self.table.separatorStyle=UITableViewCellSelectionStyleNone;
[self.viewaddSubview:self.table];
view= [[UIViewalloc]initWithFrame:CGRectMake(0,0,kScreenWidth,kScreenHeight)];
self.table.tableHeaderView=view;
_webView= [[UIWebViewalloc]initWithFrame:CGRectMake(0,0,kScreenWidth,kScreenHeight)];
[_webViewsetScalesPageToFit:YES];//大小自适应
_webView.scrollView.scrollEnabled=NO;
[self.webViewloadRequest:[[NSURLRequestalloc]initWithURL: [NSURLURLWithString:@"你的URL"]]];
[viewaddSubview:_webView];
_webView.delegate=self;
_webView.scrollView.delegate=self;
[_webView.scrollViewaddObserver:selfforKeyPath:@"contentSize"options:NSKeyValueObservingOptionNewcontext:nil];
}
- (void)observeValueForKeyPath:(NSString*)keyPath ofObject:(id)object change:(NSDictionary*)change context:(void*)context
{
if([keyPathisEqualToString:@"contentSize"]) {
webViewHeight= [[_webViewstringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"]floatValue];
CGRectnewFrame=_webView.frame;
newFrame.size.height=webViewHeight;
_webView.frame= newFrame;
[_webViewsizeToFit];
CGRectFrame =view.frame;
Frame.size.height= Frame.size.height+_webView.frame.size.height;
view.frame= newFrame;
[self.table setTableHeaderView:view];//这句话才是重点
}
}
- (void)webViewDidFinishLoad:(UIWebView*)webView
{
CGFloatsizeHeight = [[webViewstringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"]floatValue];
self.webView.frame=CGRectMake(0,0,kScreenWidth, sizeHeight);
stro.contentSize=CGSizeMake(kScreenWidth, sizeHeight+1);
}
- (void)didReceiveMemoryWarning {
[superdidReceiveMemoryWarning];
}
#pragma mark返回每组行数
-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{
return5;
}
#pragma mark返回每行的单元格
-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{
staticNSString*CellIdentifier =@"Cell";
UITableViewCell*cell = [UITableViewCell dequeueReusableCellWithIdentifier:CellIdentifier];
if(!cell) {
cell = [[commentsTableViewCellalloc]initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:CellIdentifierIndexPa:indexPath];
}
returncell;
}
#pragma mark返回每行高度
- (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath
{
return150;
}
TableView头部试图webview与原生交互
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1. 了解这些名词含义 DSP:是Demand Side Platform的缩写。需求方管理平台DMP:是Data...