blob: eab2fc080269f6bf39b39b83fe70d692e02fd014 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// VoltaButton.m
// Volta
//
// Created by Ronny Fenrich on 2013-06-14.
// Copyright (c) 2013 Decoder. All rights reserved.
//
#import "VoltaButton.h"
@implementation VoltaButton
- (void)awakeFromNib
{
[super awakeFromNib];
if (self.backgroundColor)
{
[self setBackgroundImage:[UIImage imageFromColor:[UIColor colorWithRed:0.214 green:0.573 blue:0.498 alpha:1.000]] forState:UIControlStateHighlighted];
}
}
@end
|