CarPlay UITableview上/下按钮大小

时间:2018-11-25 19:51:28

标签: ios objective-c uitableview carplay

我正在尝试以编程方式为CarPlay应用程序实现一个简单的表格视图。

默认情况下,tableview在CarPlay的右侧附带有向上/向下按钮。

tableview with button image

该表格视图的代码为:

CGRect frame = CGRectMake(0, 0, view.frame.size.width, view.frame.size.height);
tableView = [[UITableView alloc] initWithFrame:frame style:UITableViewStylePlain];
tableView.delegate = self;
tableView.dataSource = self;
tableView.backgroundColor = [UIColor grayColor];
tableView.bounces = NO;
tableView.alwaysBounceVertical = NO;

此问题是向上/向下按钮的可点击大小超出其大小(图像中的整个橙色框是向上/向下按钮的可触摸范围。)我一直在寻找更改大小或禁用此功能的方法,但是我以前从未见过,也不知道它叫什么。

如果有人知道如何调整大小/禁用或Apple的CarPlay tableview HMI指南,请告诉我。

0 个答案:

没有答案