Any ideas why I would be seeing a "Could not load source: 6" console message when calling "pushViewController"? The new view seems to come up ok. The code is:
Code Except:
EKEventViewController *eventViewController = [[EKEventViewController alloc] init];
eventViewController.event = event;
eventViewController.allowsEditing = YES;
eventViewController.delegate = self;
[self.navigationController pushViewController:eventViewController animated:YES]; // <== OCCURS HERE
EKEventViewControllerhas an IB file which gets loaded? Maybe you're using an image inside your IB/nib file which is no longer in your project. Additionally go to menu "Products" and click on "Clean Build Folder…" (or cmd-option-shift-K)