Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UIView+RuntimeAttributes.mm « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0b81bb1953b4d95e3a9d1756024fdaa38b69033 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "UIColor+MapsMeColor.h"
#import "UIView+RuntimeAttributes.h"

@implementation UIView  (RuntimeAttributes)

- (void)setBackgroundColorName:(NSString *)colorName
{
  self.backgroundColor = [UIColor colorWithName:colorName];
}

@end