webView 上添加按钮

来源:互联网 发布:linux vim配置命令 编辑:程序博客网 时间:2024/06/05 05:34
1
2
3
4
5
6
7
UIWebView *    WebView;
    UIButton*    _webButton;
 
_webButton = [UIButton buttonWithType: UIButtonTypeRoundedRect];
    [_webButton setFrame:CGRectMake(100, 300, 120, 30)];
    [_webButton setTitle:@"Web State" forState:UIControlStateNormal];
    [WebView addSubview:_webButton];
0 0
原创粉丝点击