酷店

UIImageView+CornerRadius.h 607B

1234567891011121314151617181920212223242526
  1. //
  2. // UIImageView+CornerRadius.h
  3. // MyPractise
  4. //
  5. // Created by lzy on 16/3/1.
  6. // Copyright © 2016年 lzy. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface UIImageView (CornerRadius)
  11. - (instancetype)initWithCornerRadiusAdvance:(CGFloat)cornerRadius rectCornerType:(UIRectCorner)rectCornerType;
  12. - (void)zy_cornerRadiusAdvance:(CGFloat)cornerRadius rectCornerType:(UIRectCorner)rectCornerType;
  13. - (instancetype)initWithRoundingRectImageView;
  14. - (void)zy_cornerRadiusRoundingRect;
  15. - (void)zy_attachBorderWidth:(CGFloat)width color:(UIColor *)color;
  16. @end