Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Revert default bar color for white background.
Browse files Browse the repository at this point in the history
issue #115

This is confusing, because most of iOS6 apps are using navigation bar and
tab bar but they have black background color.
I need better idea to solve this problem
  • Loading branch information
youknowone committed Sep 26, 2013
1 parent e7a471e commit 1936f8b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions UI7Kit.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "UI7Kit"
s.version = "0.9.8"
s.version = "0.9.9"
s.summary = "UI7Kit is a GUI toolkit to implement iOS7 look & feel UIKit under iOS5/iOS6. It is also supported that patching UIKit to UI7Kit in runtime."
s.homepage = "https://github.com/youknowone/UI7Kit"
s.screenshots = "https://raw.github.com/youknowone/UI7Kit/master/UI7Kit.png",
s.license = "2-clause BSD"
s.author = { "Jeong YunWon" => "[email protected]" }
s.source = { :git => "https://github.com/youknowone/UI7Kit.git", :tag => "0.9.8" }
s.source = { :git => "https://github.com/youknowone/UI7Kit.git", :tag => "0.9.9" }

s.platform = :ios, '5.0'
s.header_dir = "UI7Kit"
Expand Down
3 changes: 2 additions & 1 deletion UI7Kit/UI7Color.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ - (UIColor *)highligtedColor {
@implementation UI7Color

+ (UIColor *)defaultBarColor {
return [UIColor colorWith8bitWhite:255 alpha:167];
// return [UIColor colorWith8bitWhite:255 alpha:167];
return [UIColor colorWith8bitWhite:255 alpha:255]; // temporary revert
}

+ (UIColor *)blackBarColor {
Expand Down
3 changes: 3 additions & 0 deletions UI7KitTestApp/UITMasterViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ @implementation UITMasterViewController


- (void)viewDidLoad {
// self.tabBarController.view.backgroundColor = [UIColor whiteColor];
// self.navigationController.view.backgroundColor = [UIColor whiteColor];

self.details = @[
@"Detail",
@"Custom",
Expand Down

0 comments on commit 1936f8b

Please sign in to comment.