How do I get toolbars on UISplitView detail & root views?
Posted
by Gerry
on Stack Overflow
See other posts from Stack Overflow
or by Gerry
Published on 2010-05-20T04:26:28Z
Indexed on
2010/05/20
4:30 UTC
Read the original article
Hit count: 431
I'm porting my iPhone app to iPad. I have a bunch of detail views that derive from UIViewController and implement UITableViewDelegate. (Basically TableViews but not derived as such). The old app used TabBar, but now I'd like to use SplitView with toolbars on the Detail and Master views. How do I enable a toolbar on my UIViewController inside a UISplitViewController? I'm not using Interface Builder here, just code.
@interface HeadlineViewController : UIViewController {
UITableView *tableView;
NSMutableArray *bullIds;
UIActivityIndicatorView *prog;
}
Thanks,
© Stack Overflow or respective owner