DequeueReusableCell仅在iPhone 4S上崩溃应用程序

时间:2016-02-25 16:40:51

标签: c# ios uitableview xamarin mvvmcross

我正在使用Xamarin + Mvvmcross开发应用程序。目前它在iPad Mini,iPad 2,3,iPhone 5S和6上运行良好。奇怪的是,其中一个视图在运行iOS 7.1的iPhone 4S上崩溃。所有测试都是使用真实设备完成的。

这是崩溃:

https://gist.github.com/nunohorta/2b84245899e8c0daa116

表源代码是这样的:

    public class MessagesTableSource : MvxStandardTableViewSource
{
    UITableView _tableview;
    MessagesView _parent;
    UILabel messageLabel;

    private static readonly NSString MessageCellIdentifier = new NSString("MessageCell");

    public MessagesTableSource(UITableView tableView, MessagesView parent) : base(tableView)
    {
        _tableview = tableView;
        _parent = parent;
    }

    public override nint RowsInSection (UITableView tableview, nint section)
    {
        return _parent.ViewModel.Messages != null ? _parent.ViewModel.Messages.Count : 0;
    }

    public override nint NumberOfSections (UITableView tableView)
    {
        if (_parent.ViewModel.Messages != null && _parent.ViewModel.Messages.Count > 0) {
            return 1;
        } else {
            /*
             * Custom View here
             * 
             * */

            return 0;
        }
    }


    protected override UITableViewCell GetOrCreateCellFor (UITableView tableView, NSIndexPath indexPath, object item)
    {
        var cell = (MessageCell)tableView.DequeueReusableCell("MessageCell");
        return cell;
    }
}

我还在viewDidLoad上注册了这样的自定义类:

    tableView.RegisterNibForCellReuse(UINib.FromName("MessageCell", NSBundle.MainBundle), MessageCellIdentifier);

我不知道为什么它只是为一台设备崩溃......崩溃似乎发生在UIKit / CoreFoundation上。

1 个答案:

答案 0 :(得分:1)



您可能需要将MessageCell Nib注册到自定义MessageCell类,就像在视图中执行load方法一样。因为第一次可能找不到带标识符的单元格。

tableView.registerNib(UINib(nibName: "CustomOneCell", bundle: nil), forCellReuseIdentifier: "CustomCellOne")


使用标识符

来释放单元格
tableView.dequeueReusableCellWithIdentifier("CustomCellOne", forIndexPath: indexPath) as! CustomOneCell


我希望这有助于解决问题。