Tabgroup iOS选项卡不会打开新视图,给出Obj-C错误

时间:2017-04-20 15:45:18

标签: ios objective-c tabs appcelerator nscfstring

目前正致力于在Android上达到里程碑后,让我的应用程序的代码在iOS端运行。我的index.xml中有一个标签组:

<Alloy>
  <TabGroup id="tabMenu" title="USHUD | Home" tabsBackgroundColor="Alloy.CFG.design.colors.hudGrey" tabsBackgroundSelectedColor="Alloy.CFG.design.colors.hudBlue">
    // ------------------------------------   SEARCH TAB  --------------------------------------------------
    <Require src="search_tab/search"/>
    // ------------------------------------ FAVORITES TAB --------------------------------------------------
    <Require src="favorites"/>
    // ------------------------------------   ABOUT TAB  ---------------------------------------------------
    <Require src="about"/>
  </TabGroup>
</Alloy>

它是控制器index.js

/**
 * The scoped constructor of the controller.
 **/
(function constructor() {
  //Alloy.CFG.tabGroup = index.getView('tabMenu');
  globalTabGroup = $.tabMenu;
  $.tabMenu.open();
})();

search_tab/search.xml点击按钮时,我正在尝试将视图添加到搜索标签的导航堆栈中:

<Alloy>
<Tab id='searchTab' class="homeTab" title="Search" icon='/images/search-1.png'>
    <Window id="searchWin" title="Property Search">
        <View class="vgroup" id="wrapper">
            <ImageView height="Titanium.UI.SIZE" left="20" id="hud_logo" image="/images/US.png"/>
            <Button class="button-default bottom" id="buttonSearch" onClick="startSearch" title="Begin Search" zIndex="1"/>
        </View>
    </Window>
</Tab>

search_tab/search.js

// Arguments passed into this controller can be accessed via the $.args object directly or:
var args = $.args;

function startSearch(e){
  if(OS_ANDROID){
      Alloy.createController("search_tab/states").getView().open();
  }else if(OS_IOS){
      //Ti.API.debug('Current Window: '+Ti.UI.currentWindow);
      //Ti.API.debug('Current Tab: '+Ti.UI.currentTab);
      //Ti.UI.currentTab.open('search_tab/states');

    globalTabGroup.activeTab.open('search_tab/states');
    //$.searchTab.open('search_tab/states');

    //Alloy.Globals.tabGroup.activeTab.open('search_tab/states');
    //Alloy.createController("search_tab/states").getView().open();
  }
}

我尝试了一些尝试获取对活动选项卡的引用的不同方法,以便我可以调用该选项卡的open()函数并在搜索选项卡导航堆栈中添加下一个视图。然而,无论我如何尝试,我都会得到这种神秘而模糊的错误。

[ERROR] :  Script Error {
[ERROR] :      column = 332;
[ERROR] :      line = 1;
[ERROR] :      message = "-[__NSCFString setIsManaged:]: unrecognized selector sent to instance 0x15e61000";
[ERROR] :      sourceURL = "file:///private/var/mobile/Containers/Bundle/Application/7D2E0E41-E28B-40F8-90D1-485279A0B8F6/USHUD.app/alloy/controllers/search_tab/search.js";
[ERROR] :      stack = "[native code]\ne@file:///private/var/mobile/Containers/Bundle/Application/7D2E0E41-E28B-40F8-90D1-485279A0B8F6/USHUD.app/alloy/controllers/search_tab/search.js:1:332";
[ERROR] :  }

通过研究我发现NSCFString是NSString的包装器,而isSetManaged是一个布尔类型(?)的变量,它在某处获得一个字符串(?)。我不知道Obj-C的舔,所以这就是我的错误实际意味着什么。

1 个答案:

答案 0 :(得分:0)

在iOS中,您将字符串传递给 activeTab.open()方法,而不是窗口控制器。但是在android中你正在创建一个控制器,然后你正在调用控制器的开放方法,它可以正常工作。

所以这段代码肯定适合你:

<强> index.js

/**
 * The scoped constructor of the controller.
 **/
(function constructor() {
  Alloy.Globals.globalTabGroup = $.tabMenu;
  $.tabMenu.open();
})();

<强> search_tab / search.js:

// Arguments passed into this controller can be accessed via the $.args object directly or:
var args = $.args;

function startSearch(e){
  var statesWin = Alloy.createController("search_tab/states").getView();

  OS_IOS ? Alloy.Globals.globalTabGroup.activeTab.open(statesWin) : statesWin.open();
}