我试图向服务器发送请求

时间:2014-11-13 15:06:20

标签: objective-c

NSString *url =[NSString stringWithFormat:@"http://cvidyasharam.physicscafe.in/loginmobile.php?email=%@ password=%@",Username.text,Password.text];
equest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:10.0];
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
if (conn)
{
    NSURLResponse *response;
    NSError *err;
   responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];

}

if  ([responseData isEqual:@"yes"]){
    [self performSegueWithIdentifier:@"condition" sender:nil];
    login = @1;
}
else{
    UIAlertView *alert= [[UIAlertView alloc]initWithTitle:@"Incorrect combo" message:@"Intruder alert" delegate:self cancelButtonTitle:@"cancel" otherButtonTitles: nil];
    [alert show];

每次运行程序时,屏幕高亮显示
responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:& response error:& err];
以绿色显示行。 代码有什么问题吗?

1 个答案:

答案 0 :(得分:0)

@HotLicks所说的是真的。

应用程序已在停止点停止。

我的陈述基于您在此处提供的图片。仔细看看。

enter image description here

它清楚地表明执行已经暂停。看看你是否在这一特定行上有这样的东西。

enter image description here

像这样删除

enter image description here

您可以在此处阅读更多相关信息。 http://jeffreysambells.com/2014/01/14/using-breakpoints-in-xcode