i got a 3 view controller - Register, Login, Profile and i got a UISegmentedControl that i can switch views by from Register to main and from Login to main too. but when i'm in Register view for Example id like to switch users to profile view after finishing registration.


and here's the Code..
-(IBAction) switchView :(id)sender{
switch (segControl.selectedSegmentIndex) {
case 0:
{
HangmanViewController * main =[[HangmanViewController alloc]initWithNibName:nil bundle:nil];
main.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:main animated:YES];
[main release];
}
break;
case 1:
break;
case 2:
{
Profile *profile2 = [[Profile alloc]initWithNibName:nil bundle:nil];
[self presentModalViewController:profile2 animated:YES];
[profile2 release];
}break;
default:
break;
}
}
and i Already imported the .h file of Profile Class.. so what's wrong !!!!
Thanks.