public marks

PUBLIC MARKS from an_ta with tag bar

2018

2016

2014

2013

2012

2011

2010

iPhone Navigation Bar Title text color - Stack Overflow

(via)
CGRect frame = CGRectMake(0, 0, 400, 44); UILabel *label = [[[UILabel alloc] initWithFrame:frame] autorelease]; label.backgroundColor = [UIColor clearColor]; label.font = [UIFont boldSystemFontOfSize:20.0]; label.shadowColor = [UIColor colorWithWhite:0.0 alpha:0.5]; label.textAlignment = UITextAlignmentCenter; label.textColor = [UIColor yellowColor]; self.navigationItem.titleView = label; label.text = NSLocalizedString(@"PageThreeTitle", @"");