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
|
feedback
|
|
Here is what you can use,
this Thanks, | |||||
feedback
|
|
You shouldn't just grab the subview at index:0. This may work in your current code, but it may break in future IOS releases, if Apple makes changes to the View. This is more "future proof"
Remember all the try's and catches! If apple makes changes to EKEventViewController than the code will probably still work, and it also won't crash if the changes break backwards compatibility. | |||
|
feedback
|
|
this is great starting tutorial for UITableView customization. Hope it helps. http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html | |||
feedback
|