iPhone登録ページのコーディングで予期しない問題に直面しています。エラーは
アプリ デリゲートの読み込みは宣言されていない識別子です
if (!isValid)
{
[AppDelegate showAlert:@"Alert!" withMessage:strMessage];
}
return isValid;
}
-(void)registerUser {
[Loading startLoading:YES];
NSString *urlString = [NSString stringWithFormat:@"url=%@",Access_Token];
//firstname,lastname,email,username,password
NSString *parameter = [NSString
stringWithFormat:@"firstname=%@&lastname=%@&email=%@&username=%@&password=%@",
firstnameField.text,lastnameField.text,
emailField.text,UsernameField.text,passwordField.text];
NSConnection *conn = [[NSConnection alloc] initWithDelegate:self];
[conn sendRequest:urlString withParaMeter:parameter withMethod:@"POST" withTag:1];
[conn startAsynchronousRequest];
}