1234567891011121314151617181920212223242526 |
- //
- // UIImageView+CornerRadius.h
- // MyPractise
- //
- // Created by lzy on 16/3/1.
- // Copyright © 2016年 lzy. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface UIImageView (CornerRadius)
- - (instancetype)initWithCornerRadiusAdvance:(CGFloat)cornerRadius rectCornerType:(UIRectCorner)rectCornerType;
- - (void)zy_cornerRadiusAdvance:(CGFloat)cornerRadius rectCornerType:(UIRectCorner)rectCornerType;
- - (instancetype)initWithRoundingRectImageView;
- - (void)zy_cornerRadiusRoundingRect;
- - (void)zy_attachBorderWidth:(CGFloat)width color:(UIColor *)color;
- @end
|