0

I have a tabbar project, but when the app loads, it should display a modal view with a login screen. I do selfcareViewController *selfcareView = [[selfcareViewController alloc]init]; [self presentModalViewController:selfcareView animated:YES]; in the first view controller of the tabbar. But it doesn't load anything.

tshepang
  • 12,111
  • 21
  • 91
  • 136
MaikelS
  • 1,309
  • 4
  • 16
  • 33

1 Answers1

1

Try presenting the modal view controller from the UITabbarController itself.

cdasher
  • 3,083
  • 1
  • 19
  • 20