我正在使用AlloySliderMenu小部件構建Titanium SDK 3的應用程序。Titanium/Alloy小部件和控制器
此小部件使用Facebook應用程序的滑塊菜單。這聽起來很容易使用,但我面臨以下問題。
在index.xml中我需要小部件。
在應用程序中的index.js,我有以下的代碼:
currentView = Alloy.createController('list').getView();
//ds is the slider menu id
//contentview in the main panel of the menu
$.ds.contentview.add(currentView);
這將在應用程序的主窗口,我的「名單」視圖。
問題是,在我的list.js控制器中,我有一個函數,它應該改變$ .ds.contentview內容ith一個按鈕的點擊操作的另一個視圖。 但我無法從列表容器訪問$ .ds.contentview並使用此對象。
我試過Alloy.createWidget等..但沒辦法,它不會工作。