123456789101112131415161718192021 |
- //
- // UIView+Corner.h
- // DSH
- //
- // Created by 张毅成 on 2018/9/28.
- // Copyright © 2018 WZX. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIView (Corner)
- - (void)setCorner;
- - (void)setShadow;
- - (void)setCornerIcon;
- - (UIView *)subViewOfClassName: (NSString *)className;
- @end
- NS_ASSUME_NONNULL_END
|