Ok, I'm probably just stupid, and this is probably a question that gets passed around a bunch, but I'm new to Objective-C, and I'm running low on ideas. Basically, I have a main view to which I've added a UIImageView as a subview with no problems. Now, I want to add a transparent UITableView to that. The tableView works fine by itself, but as a subview, it crashes. I think it has something to do with how it's initialized in my main view controller:
Code:
tableView = [[MyTableViewController alloc] init];
And later...
Code:
[contentView addSubview:tableView];
Like I said, it works great when skip the main view and point the appDelegate straight to MyTableViewController, but to add it as a subview crashes the simulator.
Anyway, this is my first post, so be kind.
Thanks in advance,
emptycrawford