23 lines
523 B
Objective-C
23 lines
523 B
Objective-C
//
|
|
// UIImageView+CornerRadius.h
|
|
// MyPractise
|
|
//
|
|
|
|
#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
|