Эй, я пытаюсь визуализировать модальный вид на ipad, вот так.
login_manager *log = [[login_manager alloc]init];
UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:log];
nav.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:nav animated:YES];
[log release]`
Затем добавляю к нему кнопку в viewDidLoad.
-(void)viewDidLoad{
UIButton *facebook = [UIButton buttonWithType:UIButtonTypeCustom];
facebook.frame = CGRectMake(10,10,402,68);
facebook.imageView.image = [UIImage imageNamed:@"loginFB.png"];
[facebook addTarget:self action:@selector(login_FB) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:facebook];}
Однако я не могу получитькнопка, чтобы появиться на экране, ссылка на изображение правильная и вызывается viewDidLoad, но ничего не появляется.Есть мысли?