Newer
Older
XinYang_IOS / XYSW / ZZWTool / CALayer+XibConfiguration.m
@zhangfeng zhangfeng on 7 Dec 2023 417 bytes 1.8.0
//
//  CALayer+XibConfiguration.m
//  HuanYuBao
//
//  Created by HuanYuBao on 2019/9/11.
//  Copyright © 2019 HuanYuBao. All rights reserved.
//

#import "CALayer+XibConfiguration.h"

@implementation CALayer (XibConfiguration)
-(void)setBorderUIColor:(UIColor *)borderUIColor{
    self.borderColor = borderUIColor.CGColor;
}
-(UIColor *)borderUIColor{
    return [UIColor colorWithCGColor:self.borderColor];
}
@end