[Solved] Default Back Button Text and Font Setting

Change your code in viewDidLoad like this. class BaseViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } func setNavigationWithCustomBackButton() { let btnLeft:UIButton! = UIButton(frame: CGRectMake(0, 0, 20, 16)) btnLeft.setTitle(“<=|”, forState: .Normal) btnLeft.titleLabel?.font = UIFont.systemFontOfSize(19, weight: UIFontWeightLight) btnLeft!.addTarget(self, action: “handleBack:”,forControlEvents: UIControlEvents.TouchUpInside) let leftItem:UIBarButtonItem = UIBarButtonItem(customView: btnLeft!) self.navigationItem.leftBarButtonItem = leftItem } func handleBack(sender: UIButton) { self.navigationController?.popViewControllerAnimated(true) } … Read more

[Solved] Don’t know where to start with this navigation bar (nav bar) [closed]

You can try something like this: <nav> <ul> <li> <a href=”http://www.google.nl/”>Menu item 1</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 2</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 3</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 4</a> </li> </ul> </nav> With the CSS of: nav { height: 100px; background-color: blue; } nav > ul { list-style: none; } nav > ul … Read more

[Solved] How to hide Navigation Bar? [closed]

Try out this to remove the navigation bar. (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; // Override point for customization after application launch. MasterViewController *masterViewController = [[[MasterViewController alloc] initWithNibName:@”MasterViewController” bundle:nil] autorelease]; self.window.rootViewController = masterViewController; [self.window makeKeyAndVisible]; return YES; } 1 solved How to hide Navigation Bar? [closed]