0

我的 .xib 包含一个UITabBar和 3 个视图:

在此处输入图像描述

在此处输入图像描述

我做了一个插座:

@property (nonatomic, retain) IBOutlet UIView* _controllersContainerView;

在我的viewDidLoad方法中,我想添加一个子视图_controllersContainerView

    [self controllersNavigationController].view.frame = _controllersContainerView.bounds;
//  [self controllersNavigationController].view.frame = CGRectMake(0, 0, 350, 199);
    [_controllersContainerView addSubview:[self controllersNavigationController].view];

但即使我尝试将帧高度设置为超短值(199),它看起来也_controllersContainerViewtabBar.

在此处输入图像描述

代码有什么问题?它在带有 armv6 v7 的 Xcode 4.4 中运行良好,但在 Xcode 4.5 中却失败了。

4

1 回答 1

0

将 clipToBounds 属性设置为 YES,它可能会解决问题。

于 2012-12-11T07:51:12.283 回答