ホームスクリーンにリダイレクトするユーザー名とパスワードの認証を確認した後、php apiでmysql dbにログインしてiphoneアプリを開発しています。次のステップこれはphp webserviceでiphoneにログインする
ホーム画面にユーザーIDを渡して、ログインしたユーザーで他のデータをフェッチする必要があるという問題です。どうすればいいですか。誰かがその問題の経験があれば助けてください。 。PHPのAPIを介してユーザの正当性を確認した後、ログインプロセスについて
このコード:
if([serverOutput isEqualToString:@"OK"]){
Home *home = [[[Home alloc] initWithNibName:@"Home" bundle:nil] autorelease];
home.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:home animated:YES];
[serverOutputLabel release];
} else {
UIAlertView *alertsuccess = [[UIAlertView alloc] initWithTitle:@"Invalid Login"
message:@"Username or Password Incorrect"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil, nil];
serverOutputLabel.text=serverOutput;
[alertsuccess show];
[alertsuccess release];
[serverOutputLabel release];
}
感謝を参照してください – Montaser