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];
以绿色显示行。
代码有什么问题吗?
答案 0 :(得分:0)
@HotLicks所说的是真的。
应用程序已在停止点停止。
我的陈述基于您在此处提供的图片。仔细看看。
它清楚地表明执行已经暂停。看看你是否在这一特定行上有这样的东西。
像这样删除
您可以在此处阅读更多相关信息。 http://jeffreysambells.com/2014/01/14/using-breakpoints-in-xcode