我正在尝试以下方法来更改默认 EventKitUI -“添加事件”日历条目表上的完成/取消按钮的色调。
EKEventEditViewController *eventController = [[EKEventEditViewController alloc]init];
eventController.editViewDelegate = self;
[[[eventController navigationItem]cancelButton]setTintColor:[UIColor blueColor]];
但是按钮仍然保持从前一个导航栏继承的颜色,如上图所示(奇怪的是,工作表没有从前一个导航栏接管导航栏的色调,这也是灰色的)。
如何访问和更改此视图上的按钮色调?