Я пытаюсь вызвать представление через presentModalViewController с помощью кнопки UIAlertView. Код ниже, NSlog отображается в консоли, поэтому я знаю, что выполнение кода действительно достигает этой точки. Также нет ошибок или чего-либо отображенного:
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex != [alertView cancelButtonIndex])
{
NSLog(@" The username is: %@ AND the password is: %@ ",textField.text,passTextField.text);
// do some logic in here later
CompanyViewController *companyViewController = [[[CompanyViewController alloc] initWithNibName:@"CompanyViewController" bundle:nil] autorelease];
[self presentModalViewController:companyViewController animated:YES];
}
[textField resignFirstResponder];
[passTextField resignFirstResponder];
}
***** Редактировать: описанный выше метод принадлежит UIViewController. Ниже приведен файл интерфейса:
@interface testingViewController : UIViewController <UITextFieldDelegate>
{
UITextField *textField;
UITextField *passTextField;
}
@property (nonatomic, retain) UITextField *textField;
@property (nonatomic, retain) UITextField *passTextField;
@property (readonly) NSString *enteredText;
@property (readonly) NSString *enteredPassword;
@end
Любая помощь приветствуется.