23 lines
320 B
Objective-C
Executable File
23 lines
320 B
Objective-C
Executable File
//
|
|
// CALayer+Extension.m
|
|
// MoHuanXingYu
|
|
//
|
|
// Created by aa on 2019/5/28.
|
|
// Copyright © 2019 MoHuanXingYu. All rights reserved.
|
|
//
|
|
|
|
#import "CALayer+Extension.h"
|
|
|
|
|
|
|
|
@implementation CALayer (Extension)
|
|
|
|
|
|
|
|
- (void)setBorderColorFromUIColor:(UIColor *)color {
|
|
|
|
self.borderColor = color.CGColor;
|
|
|
|
}
|
|
@end
|