Tagged Questions
The navigation-style tag has no wiki summary.
16
votes
2answers
31k views
Adding left button to UINavigationBar (iPhone)
I've created a new navigation based iPhone app. I added this to the RootViewController.
- (void)viewDidLoad {
[super viewDidLoad];
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] ...
10
votes
5answers
6k views
Best way to manage whitespace between inline list items
My HTML is as follows:
<ul id="nav">
<li><a href="./">Home</a></li>
<li><a href="/About">About</a></li>
<li><a ...