gpt4 book ai didi

iphone - 如何在iPhone中的UIAlertView中使用UIWebview

转载 作者:行者123 更新时间:2023-12-03 21:23:22 29 4
gpt4 key购买 nike

我正在尝试在 UIAlertview 中插入 UIWebview,就像本教程所做的那样 http://codesofa.com/blog/archive/category/iphone对于 Table,我在代码中尝试了 webview,但面临异常,并且我的程序因此而终止。

最佳答案

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"WebView" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"Ok", nil];
UIWebView *webView = [[UIWebView alloc] init];
[webViewn setFrame:CGRectMake(0,0,80,50)];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"google.com"]]];
[alert addSubview:webView];
[webView release];
[alert show];
[alert release];

尝试这样。

关于iphone - 如何在iPhone中的UIAlertView中使用UIWebview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2780896/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com