After wrestling with Core Data + Extensions (sharing data) all day, I finally got it working, data is shared fine. Now, in my UITableViewController (inside my Today Extension), I'd like to have a constant footer view with a button to open the application, but I cannot get the UIView to display. I've tried doing it programmatically and via IB. Any ideas?
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
UIView *footerView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 44)];
UIButton *openButton = [[UIButton alloc]initWithFrame:CGRectMake(footerView.frame.origin.x, footerView.frame.origin.y, 300, 30)];
[footerView addSubview:openButton];
return footerView;
}