按钮y位置将为 Label_Height+Webview_Height+(Margin_between_webview_and_button) 因此,相应地滚动视图内容高度将为 Label_Height+WebView_Height+Button_Height
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self
action:@selector(aMethod:)
forControlEvents:UIControlEventTouchDown];
[button setTitle:@"This is a button" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, height, 160.0, 40.0);
[self.webView addSubview:button];
在上述代码的倒数第二行中,“height”是您已经检索到的 webview 的高度。只需添加 webview 的高度并将按钮添加为 webview 的子视图即可。