Hi,
My application creates two views:
- topView (CGRect = 0,0, 320,60)
- bottomView (CGRect = 0,60, 320,480)
Bottom view creates UITabBarController with UIViewControllers:
- ListViewController
- etc...
ListViewController has own views that are created in viewDidLoad method:
background = [[UIImageView alloc] initWithFrame: rect ];
So my question is how to get the bottomView rect inside ListViewController? I want to layout all controller views without intersection with topView.
Thank you.