谁能帮我解决这个问题?我试过了,但是 webview 的框架不合适,我想在我的应用程序的开头使用警报作为条款和条件,所以文本会更大,这就是为什么我想使用 webview 而不是使用字符串消息和正在使用的文本不是英语它的阿拉伯语这就是为什么如果使用普通字符串它看起来不好
请任何人都可以帮助我....这是它的外观:
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Terms and Condition", @"Terms and Condition") message:terms delegate:self cancelButtonTitle:NSLocalizedString(@"Accept", @"Accept") otherButtonTitles:NSLocalizedString(@"Cancel",@"Cancel"), nil];
[alert setFrame:CGRectMake(alert.frame.origin.x,alert.frame.origin.y, alert.frame.size.width, 150)];
UIWebView *webView = [[UIWebView alloc] init];
[webView setFrame:CGRectMake(12,45,260,100)];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
[alert addSubview:webView];
[alert show];