1

我是 iOS 新手,并且正在使用,UIWebView因为我在单视图控制器中创建了两个 Web 搜索。但它只需要一次搜索,即下面的代码中的 www.apple.com,并且没有为两个视图创建边框。

这是代码。

- (void)viewDidLoad
{
[super viewDidLoad];
webview=[[UIWebView alloc]initWithFrame:CGRectMake(60, 0,500,350)];
[webview setBackgroundColor:[UIColor blueColor]];

CALayer *webViewLayer = webview.layer;
[webViewLayer setBorderColor: [[UIColor greenColor] CGColor]];
[webViewLayer setBorderWidth: 2.75];  


NSString *url=@"http://www.google.com";
NSURL *nsurl=[NSURL URLWithString:url];
NSURLRequest *nsrequest=[NSURLRequest requestWithURL:nsurl];
[webview loadRequest:nsrequest];
[self.view addSubview:webview];
[webview setScalesPageToFit:YES];


webview2=[[UIWebView alloc]initWithFrame:CGRectMake(60, 400,500,350)];
   [webview2 setBackgroundColor:[UIColor redColor]];
NSString *url2=@"http://www.apple.com";
NSURL *nsurl2=[NSURL URLWithString:url2];
NSURLRequest *nsrequest2=[NSURLRequest requestWithURL:nsurl2];
[webview loadRequest:nsrequest2];
[self.view addSubview:webview2];
[webview setScalesPageToFit:NO];

CALayer *webViewLayer2 = webview2.layer;
[webViewLayer2 setBorderColor: [[UIColor greenColor] CGColor]];
[webViewLayer2 setBorderWidth: 2.75]; 

}
4

0 回答 0