Is there any way to change the background color/image of the details UITableView in the EKEventViewController? I'm able to change the main UITableView but not the detail UITableView due to have no outlet for the table. For example, here is Apple's example source code for a Event App
Here is what you can use,
UITableView *eventTableView = [[yourEventController.view subviews]objectAtIndex:0];
this eventTableView
is reference to your EKEventViewController
's tableView now you can customize it.
Thanks,