ユーザーのログイン詳細を取得してメインページにリダイレクトするログインページを作成したいと思います。どうすればいいのかわからない。plzは私を助けます。
if([username isEqualToString:@"aa"] && [password isEqualToString:@"aa"])
{
Supportingwv *swv = [[Supportingwv alloc]initWithNibName:@"supportingwv"bundle:nil];
NSString *urlstring = @"www.google.com";
[ swv setUrlString : urlstring];
[self.view addSubview:swv.view];
}
else
{
UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"invalid authentication" message:@"username & password doesnot match" delegate:nil cancelButtonTitle:@"ok" otherButtonTitles:nil, nil];
[alert show];
[alert show];
}