我是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];
}