19 lines
291 B
Objective-C
Executable File
19 lines
291 B
Objective-C
Executable File
//
|
|
// CALayer+Extension.h
|
|
// MoHuanXingYu
|
|
//
|
|
// Created by aa on 2019/5/28.
|
|
// Copyright © 2019 MoHuanXingYu. All rights reserved.
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface CALayer (Extension)
|
|
|
|
|
|
|
|
- (void)setBorderColorFromUIColor:(UIColor *)color;
|
|
|
|
@end
|