香港专业教育学院在我的行选择方法中添加了一条打印语句,它永远不会被调用:

    public override void RowSelected (UITableView tableView, NSIndexPath indexPath)
    {
        Console.WriteLine ("Row selected");
    }

我的单元格有一个UIImageView,它覆盖了充当背景图像的整个单元格。这会导致该行无法识别触摸吗?

最佳答案

不得不致电:

MyTableView.AllowsSelection = true;

默认情况下必须将其设置为false

关于c# - iOS Row Selected未被调用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25829027/

10-13 08:40