-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIView+Designable.m
64 lines (52 loc) · 1.45 KB
/
UIView+Designable.m
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
// UIView+UIView.m
//
// Created by MubeenQazi on 11/3/16.
// Copyright © 2016 MubeenQazi. All rights reserved.
//
#import "UIView+Desinable.h"
#import <objc/runtime.h>
static void const *key;
@implementation UIView (UIView)
//Getter and setter for border color
-(void)setBorderColor:(UIColor *)borderColor{
self.layer.borderColor = (borderColor).CGColor;
}
-(UIColor*)borderColor{
return [UIColor colorWithCGColor: self.layer.borderColor];
}
//Getter and setter for border width
-(void)setBorderWidth:(NSInteger)borderWidth{
self.layer.borderWidth = borderWidth;
}
-(NSInteger)borderWidth{
return (NSInteger)roundf((self.layer.borderWidth));
}
//Getter and setter for corner radius
-(void)setCornerRadius:(CGFloat)cornerRadius{
self.layer.cornerRadius = cornerRadius;
self.layer.masksToBounds = YES;
}
-(CGFloat)cornerRadius{
return self.layer.cornerRadius;
}
- (void)layoutSubviews{
if ([self isCircular])
[self setMakeCircular:[self isCircular]];
}
//Getter and setter for making view circular
-(void)setMakeCircular:(BOOL)circular{
[self setIsCircular:circular];
if(circular)
[self setCornerRadius:MIN(self.bounds.size.width, self.bounds.size.height) / 2.0];
}
-(BOOL)makeCircular{
return nil;
}
- (BOOL)isCircular {
return [objc_getAssociatedObject(self, key) boolValue];
}
- (void)setIsCircular:(BOOL)value {
objc_setAssociatedObject(self, key, @(value), OBJC_ASSOCIATION_RETAIN);
}
@end