在我用于 iPhone 的 Monotouch 应用程序中,我试图将分段控制器添加到 UITableViewCell 以充当每行中值的切换。一切都正确显示,并且第一行在单击时最初会正常工作。但是,在该行离开屏幕并重新加载后,如果我再次单击分段控制器,则会收到异常:
由于未处理的异常而终止运行时 [错误] FATAL UNHANDLED EXCEPTION: System.Exception: Selector 从objective-c 对已被 GC 处理的 MonoTouch.UIKit.UIControlEventProxy (0x16D793C0) 类型的托管对象调用---> System.MissingMethodException : 没有找到 MonoTouch.UIKit.UIControlEventProxy::.ctor(System.IntPtr) 的构造函数
我听说过使用 Monotouch 的人尝试将按钮放在表格单元格中的类似问题。一般建议是将每个表格单元格添加到列表中以防止其被垃圾收集,但这对我不起作用。
有没有办法解决这个问题?
这是我的 GetCell 代码的简化版本:
public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
Hashtable rowData = dataList [indexPath.Row];
FilterListToggleCell cell;
cell = (FilterListToggleCell)tableView.DequeueReusableCell ("FilterTogglePlusCell");
cacheList.Add(cell.Toggle);//cache only the segcontrol
//cacheList.Add(cell);//also previously tried caching the whole cell
cell.Title.Text = (string)rowData["title"];
if(additionalFields.Contains((string)rowData["key"])){
cell.Toggle.SelectedSegment = 0;
} else {
cell.Toggle.SelectedSegment = 1;
}
cell.Toggle.ValueChanged += (sender, e) => {
UISegmentedControl toggle = (UISegmentedControl)sender;
if(toggle.SelectedSegment == 0){
Console.WriteLine("Toggle YES");
} else {
Console.WriteLine("Toggle NO");
}
};
cell.Toggle.Tag = indexPath.Row;
return cell;
}