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

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

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,

link|improve this answer
Works perfect, Thanks. – 0SX Apr 20 '11 at 4:11
Can you help me how can i do the same for EKEventEditViewController – Dilip Rajkumar Oct 13 '11 at 12:17
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"

for (UIView *searchTableView in [yourEventController.view subviews]) {

    if ([eventTableView isKindOfClass:[UITableView class]]) {
        @try {
            // change stuff to eventTableView

            for (UIView *eventTableViewCell in [eventTableView subviews]) {

                if ([eventTableViewCell isKindOfClass:[UITableViewCell class]]) {
                    @try {
                        [(UITableViewCell *)eventTableViewCell setBackgroundColor:[UIColor clearColor]];
                    }
                    @catch (NSException * e) {
                    }
                }
            }


        }
        @catch (NSException * e) {
        }
    }
} 

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.

link|improve this answer
feedback

this is great starting tutorial for UITableView customization. Hope it helps.

http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html

link|improve this answer
Thanks for trying to help :-). I know how to change UITableView colors and etc but the EKEventViewController Class is a API from Apple that is pre-made. I just don't know how to access the UITableView of the EKEventViewController. Thanks. – 0SX Apr 20 '11 at 4:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.