Joined March 2012
·
Posted to
Change UINavigationBar background color
over 1 year
ago
@amitibcmobile , tint color can change but it's not flat color.
Posted to
Change UINavigationBar background color
over 1 year
ago
@zerho , use UIButton
UIButton* btn = [UIButton buttonWithType:UIButtonTypeCustom];
[btn setImage:[[self class] defaultImage] forState:UIControlStateNormal];
[btn setFrame:CGRectMake(0, 0, 22, 22)];
[btn addTarget:self action:@selector(toggleLeftPanel:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem* barBtn = [[UIBarButtonItem alloc] initWithCustomView:btn];
self.navigationItem.leftBarButtonItem = barBtn;
Achievements
286 Karma
7,906 Total ProTip Views
Lab
Have at least one original repo where C# is the dominant language
Forked 20
Have an established project that's been forked at least 20 times
Philanthropist
Truly improve developer quality of life by sharing at least 50 individual open source projects
Honey Badger 3
Have at least three Node.js specific repos
Komodo Dragon
Have at least one original repo where Java is the dominant language
Bear 3
Have at least three original repos where Objective-C is the dominant language
Nephila Komaci
Have at least one original repos where PHP is the dominant language
Nephila Komaci 3
Have at least three original repos where PHP is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Altruist
Increase developer well-being by sharing at least 20 open source projects
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
Python 3
Have at least three original repos where Python is the dominant language
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Cub
Have at least one original jQuery or Prototype open source repo
Bear
Have at least one original repo where Objective-C is the dominant language
Honey Badger
Have at least one original Node.js-specific repo
@mrnickbarker , thank you.