1

Webサービスにアクセスするためにこのコードを記述していますが、エラーが発生します(EXPECTED EXPRESSION)

-(IBAction)loginAction:(id)sender  //here I m getting the error(  (*expect expresion)))                          
{
    NSString *urlStr = [NSString stringWithFormat:@"http://192.168.0.2/mobileBill/login.ashx?username=%@&password =%@&simno=%@", username.text, password.text, @""];
    NSURL *url = [NSURL URLWithString:urlStr];
    request = [NSMutableURLRequest requestWithURL:url];
    connection = [NSURLConnection connectionWithRequest:request delegate:self];
}
4

1 に答える 1

0

以前のその他の関数-(IBAction)loginAction:(id)senderは閉じられない場合があります。}この関数の前に追加してみてください。そして、すべての機能に正しい開閉ブレースがあるかどうかを確認します。

于 2012-11-23T07:49:53.250 に答える