webV = [[UIWebView alloc]initWithFrame:self.view.bounds];
NSString* path = [NSString stringWithFormat:@"http://xxxxxxxxx"];
path = [path stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"....");
webV.delegate = self;
[webV loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:path]]];
[self.view addSubview:webV];