钛3.2.2 tabGroup与navigationGroup

时间:2014-03-17 21:25:08

标签: ios tabs uinavigationcontroller titanium

我刚刚从v.3.1.3更新了我的一个钛项目到3.2.2并且我遇到了一个奇怪的行为:当尝试在tabGroup中插入iOS navigationGroup(现在称为navigationWindow)时,我得到了一个额外的标题栏。

//根视图控制器 http://imgur.com/MqibvFf

//推送窗口 http://imgur.com/aiJP27o

以下是我正在使用的代码:

var navControllerCareer = Titanium.UI.iOS.createNavigationWindow({
        window:career, //it's a window
        navBarHidden: true,
        fullscreen: true
    });

var career_tab = Ti.UI.createTab({
    title: 'CARRIERA',
    font:{
        fontSize:'13dp',
        fontWeight:'bold'
      },
    deselectedBackgroundColor:'#9e9e9e',
    selectedBackgroundColor:'#6d6d6d',
    window: navControllerCareer,
    navBarHidden: true,
    fullscreen: true
});

在更新到3.2.2之前,它正常工作。 是否不再支持tabgroup + navgroup的组合使用?

0 个答案:

没有答案