ios-unity/Classes_cocos/LBXNative/UIImageView+CornerRadius.h
2022-11-25 15:08:47 +08:00

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