CALayer+Category.h 393 B

12345678910111213141516
  1. //
  2. // CALayer+Category.h
  3. // CustomCodeInput
  4. //
  5. // Created by WangXueqi on 2018/5/7.
  6. // Copyright © 2018年 JingBei. All rights reserved.
  7. //
  8. #import <QuartzCore/QuartzCore.h>
  9. #import <UIKit/UIKit.h>
  10. @interface CALayer (Category)
  11. + (CALayer *)addSubLayerWithFrame:(CGRect)frame
  12. backgroundColor:(UIColor *)color
  13. backView:(UIView *)baseView;
  14. @end