0
如何從我的BasisViewController中的AccessoryButtonTapped按鈕打開一個新窗口。現在我有這個打開,但問題是我無法找到的NavigationController,因爲我是固有的UITableViewSource。MonoTouch無法從AccessoryButtonTapped打開新窗口
Opskrift ops = new Opskrift(item.ImageName, item.Name, item.optionTxt, item.SubHeading)
this.NavigationController.PushViewController(this.opskrift, true);
如果我使用ops.NavigationController.PushViewController(this.opskrift, true);
我得到一個對象引用未設置到對象異常的實例。
我得到一個錯誤:\t Example_CustomUITableViewCells.MyTableSource「不實現繼承的抽象成員'MonoTouch.UIKit.UITableViewSource.RowsInSection(MonoTouch.UIKit.UITableView,INT)」 Example_CustomUITableViewCells.MyTableSource」不實現繼承的抽象成員'MonoTouch.UIKit.UITableViewSource.GetCell(MonoTouch.UIKit.UITableView,MonoTouch.Foundation.NSIndexPath)' 我應該實現它們並返回一些空值。 – mortenstarck
這兩個方法是必需的,以便您的表視圖可以創建要顯示的項目列表。如果您從GetCell返回null,並從RowsInSection返回0,則表格視圖中不會顯示任何項目。 –