В моем UIAlertView я хочу открыть другой UIView при нажатии кнопки «ОК».
Но проблема в том, что даже после отображения UIView предупреждение остается на экране, и как только оно исчезает, кажется, что UIView отключен.
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Add details" message:@" Do you like to set the details now?" delegate:self cancelButtonTitle:@"Yes" otherButtonTitles:@"No",nil];
[alert show];
[alert release];
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{ // the user clicked one of the OK/Cancel buttons
NSString *title = [alertView title];
if([title isEqualToString:@"Add details"])
{
.......
Любая помощь будет оценена!