У меня есть этот код внутри IBAction:
NSString *strURL = [NSString stringWithFormat:@"http://www.brmyapps.com/folder/folder/registerpost.php?first_name=%@&last_name=%@&titulo_noticia=%@&comments=%@&idpub=%@&dataevento=%@&email=%@", self.textnome.text, self.textimg.text, self.texttitulo.text, self.textnoticia.text, self.textid.text, self.textdata.text, self.textemail.text];
self.aWebView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
self.aWebView.autoresizesSubviews = YES;
self.aWebView.autoresizingMask=(UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth);
[self.aWebView setDelegate:self];
NSString *urlAddress = strURL; // test view is working with url to webpageNSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[self.aWebView loadRequest:requestObj];
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
[[self view] addSubview:_aWebView];
Моя проблема в том, что когда я нажимаю на кнопку, открывается UIWebView, но URL-адрес php, который я хочу открыть для отправки данных в php, не загружается. Отображается только пустая страница.
Как я могу решить это?
Задача ещё не решена.
Других решений пока нет …