1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// IBTUIControl.m
// XFFruit
//
// Created by Xummer on 15/4/15.
// Copyright (c) 2015年 Xummer. All rights reserved.
//
#import "IBTUIControl.h"
#define IBT_BTN_HIGHLIGHT_ALPHA (.6f)
@implementation IBTUIControl
#pragma mark - Life Cycle
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}
- (void)setHighlighted:(BOOL)highlighted {
[super setHighlighted: highlighted];
if (_highLightWhenTapped) {
self.alpha = highlighted ? IBT_BTN_HIGHLIGHT_ALPHA : 1.0f;
}
}
#pragma mark - Public Method
+ (IBTUIControl *)highLightControl {
IBTUIControl *control = [[IBTUIControl alloc] init];
control.highLightWhenTapped = YES;
return control;
}
@end