Skip to content

Instantly share code, notes, and snippets.

@davidino
Created May 30, 2011 23:28
Show Gist options
  • Select an option

  • Save davidino/999632 to your computer and use it in GitHub Desktop.

Select an option

Save davidino/999632 to your computer and use it in GitHub Desktop.
tabBarController = [[UITabBarController alloc] init];
[tabBarController setDelegate:self];
//home
IndigeniWebViewController *home = [[IndigeniWebViewController alloc] initWithNibName:@"IndigeniWebViewController"
bundle:nil
withUrl:[NSString stringWithFormat:@"%@/home%@",urlIdg,coordinate]];
idcontroller = home;
home.title = @"Home";
home.tabBarItem.image = [UIImage imageNamed:@"house.png"];
[controllers addObject:home];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment