我有UITableView,每个单元格都有按钮和文本。实际的单元格不应该是可点击的,但按钮应该是可点击的。当我在模拟器中运行时,我可以点击按钮,但是当部署到设备时它被禁用。 (编辑)的
尝试按照许多不同的步骤来修复此帖Button in UITableViewCell not responding under ios 7,例如ContentView.UserInteractionEnabled = False;对于细胞。
所有针对原生iOS的人,也许对于Xamarin来说还有别的吗?
任何想法我都缺少什么?
UITableViewCell代码
this.DelayBind(() =>
{
var set = this.CreateBindingSet<CalendarCell, ActivityModel>();
set.Bind(CustomerNameLabel).To(a => a.Subject);
set.Bind(MarkAsMeetingButton).For(a => a.Hidden).WithConversion("ActivityTypeToVisibility");
set.Bind(MarkAsMeetingButton).To(a => a.SendMessageToViewModelCommand).CommandParameter(BindingContext);
set.Apply();
});
ContentView.UserInteractionEnabled = false;
UItableView代码
public override void ViewDidLoad()
{
base.ViewDidLoad();
var source = new TableSource(CalendarList);
var set = this.CreateBindingSet<CalendarView, CalendarViewModel>();
set.Bind(source).To(vm => vm.CalendarList);
set.Apply();
CalendarList.Source = source;
CalendarList.ReloadData();
}
public class TableSource : MvxSimpleTableViewSource
{
private List<IGrouping<DateTime, ActivityModel>> GroupedCalendarList = new List<IGrouping<DateTime, ActivityModel>>();
public TableSource(UITableView calendarView) : base(calendarView, "CalendarCell", "CalendarCell")
{}
public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
{
var currentSection = GroupedCalendarList[indexPath.Section].ToList();
var item = currentSection[indexPath.Row];
var cell = GetOrCreateCellFor(tableView, indexPath, item);
var bindable = cell as IMvxDataConsumer;
if (bindable != null)
bindable.DataContext = item;
return cell;
}
public override nint RowsInSection(UITableView tableview, nint section)
{
return (nint)GroupedCalendarList[(int)section].Count();
}
public override UIView GetViewForHeader(UITableView tableView, nint section)
{
var label = new UILabel();
var currentDate = DateTime.Now;
var titleText = GroupedCalendarList[(int)section].FirstOrDefault().ScheduledStart.Value.Date;
return label;
}
public override nint NumberOfSections(UITableView tableView)
{
return (nint)GroupedCalendarList.Count;
}
public override void ReloadTableData()
{
if (ItemsSource == null) return;
var groupedCalendarList = (ItemsSource as List<ActivityModel>).GroupBy(cl => cl.ScheduledStart.Value.Date).ToList();
GroupedCalendarList = new List<IGrouping<DateTime, ActivityModel>>(groupedCalendarList);
base.ReloadTableData();
}
}
此代码对于模拟器非常好,但不能在设备上工作,每个单元格中的UIButton都被禁用。
答案 0 :(得分:0)
正如@Luke在你的问题的评论中所说,不要使用ContentView.UserInteractionEnabled = false;
,因为这会禁用你单元格整个视图上的任何触摸事件。
要实现您的需求,请实现UITableViewDelegate方法ShouldHighlightRow
并返回false:
public override bool ShouldHighlightRow(UITableView tableView, NSIndexPath rowIndexPath) {
return false;
}
然后,单元格不会突出显示,并且RowSelected
方法不会被调用,但您的按钮将是可点击的!