2014-01-31 54 views
-4
NSURL *url = [NSURL URLWithString: @"www.bikrionline.com/database/iqry_mbr_mst.php"]; 
NSString *body = [NSString stringWithFormat: @"txtemail=%@&txtpwd=%@&txtcpwd", email, password,confirmpassword]; 
NSMutableURLRequest *request = [[NSMutableURLRequest alloc]initWithURL: url]; 
[request setHTTPMethod: @"POST"]; 
[request setHTTPBody: [body dataUsingEncoding: NSUTF8StringEncoding]]; 
[_webView loadRequest: request]; 
+0

這裏有個問題嗎?遵循這個指導:http://stackoverflow.com/help/mcve –

回答

0

你已經錯過了格式說明嘗試使用此

NSString *body = [NSString stringWithFormat: @"txtemail=%@&txtpwd=%@&txtcpwd=%@", email, password,confirmpassword]; 
+0

你的答案和我的答案有什麼區別? – Mani

+0

沒有區別是否有吶。 – veeresh

1

您的格式字符串只有2個格式說明符,但您傳遞的是3個參數。讓他們匹配。

檢查:

[NSString stringWithFormat: @"txtemail=%@&txtpwd=%@&txtcpwd=%@", email, password,confirmpassword]; 
+0

再次顯示一個錯誤 – veeresh

+0

我如何檢查那個在safari – veeresh

+0

什麼是錯誤? – rmaddy

1

試用確認passord這個..你已經錯過了格式說明(%@)

NSString *body = [NSString stringWithFormat: @"txtemail=%@&txtpwd=%@&txtcpwd=%@", email, password,confirmpassword]; 

更新:嘗試網址與http://

NSURL *url = [NSURL URLWithString: @"http://www.bikrionline.com/database/iqry_mbr_mst.php"]; 

入住這也..

UIWebView *webView=[[UIWebView alloc] initWithFrame:CGRectMake(0,0,320,480); 
[self.view addSubView:webView]; 
+0

在UIVIEW可能無法響應加載請求在webview – veeresh

+0

在safari手動檢查您的網址是否是工作或不? – Mani

+0

我是一個新手如何檢查safari – veeresh

相關問題