Update UI theme

* new dark UI
* new app lists
This commit is contained in:
Yuki MIZUNO
2014-12-04 18:41:01 +09:00
parent 79e51defe1
commit 582dda5727
8 changed files with 162 additions and 70 deletions

View File

@@ -40,6 +40,7 @@ static int LABEL_DY = 20;
[_hostLabel setText:[_computer displayName]];
[_hostLabel sizeToFit];
_hostLabel.textColor = [UIColor whiteColor];
[_hostButton addTarget:self action:@selector(hostClicked) forControlEvents:UIControlEventTouchUpInside];
_hostLabel.center = CGPointMake(_hostButton.frame.origin.x + (_hostButton.frame.size.width / 2), _hostButton.frame.origin.y + _hostButton.frame.size.height + LABEL_DY);
[self updateBounds];
@@ -66,6 +67,7 @@ static int LABEL_DY = 20;
[_hostLabel setText:@"Add Host"];
[_hostLabel sizeToFit];
_hostLabel.textColor = [UIColor whiteColor];
_hostLabel.center = CGPointMake(_hostButton.frame.origin.x + (_hostButton.frame.size.width / 2), _hostButton.frame.origin.y + _hostButton.frame.size.height + LABEL_DY);
UIImageView* addIcon = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"AddComputerIcon"]];