potato
potato

Reputation: 49

How to implement a Modal View in a TabBar iOS app

I am trying to present a modal view in a tabbar app. I am using the code

- (IBAction)newView
{
 [self.viewController presentModalViewController:viewController 
                                        animated:YES];
}

linked to a button. When the button is pressed, nothing happens and nothing is displayed on the log. This is most likely simple to fix, but I have not found anything that has worked yet.

Thanks

Upvotes: 0

Views: 1157

Answers (1)

user142019
user142019

Reputation:

Use this and you rock:

[self presentModalViewController:viewController animated:YES];

Upvotes: 1

Related Questions