2013-10-04 124 views

回答

4

不知道你已经尝试了什么,但是,如果你想添加从UIViewController这是UITabBarController里面的观点,那么你应该使用:

UIView *coverView = [[UIView alloc] initWithFrame:CGRectMake(0, 
                  0, 
        self.tabBarController.view.frame.size.width, 
        self.tabBarController.view.frame.size.height)]; 
[self.tabBarController.view addSubview:coverView]; 
//and maybe [self.tabBarController.view bringSubviewToFront:coverView]; 
+0

感谢和者均基于最后一个属性应该是self.tabBarController .view.frame.size.Height。 – CLDev