39 lines
678 B
C
39 lines
678 B
C
|
|
//
|
||
|
|
// UIView+EasyShadow.h
|
||
|
|
// secert
|
||
|
|
//
|
||
|
|
// Created by binbins on 2019/5/7.
|
||
|
|
// Copyright © 2019 binbins. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface UIView (YBUtil)
|
||
|
|
|
||
|
|
@property (nonatomic, assign) CGFloat cornerRadius;
|
||
|
|
|
||
|
|
- (void)styleShadow;
|
||
|
|
|
||
|
|
|
||
|
|
/// view的圆角阴影效果
|
||
|
|
/// @param redius 圆角半径
|
||
|
|
- (void)styleShadowWithRedius:(CGFloat )redius;
|
||
|
|
|
||
|
|
/// 首页默认的阴影圆角
|
||
|
|
- (void)homeShadowWithRadius:(CGFloat)redius;
|
||
|
|
|
||
|
|
- (UIImage *)renderImage;
|
||
|
|
|
||
|
|
///通过响应者链拿到view的控制器
|
||
|
|
- (UIViewController *)viewController;
|
||
|
|
|
||
|
|
|
||
|
|
//孤独星球的蓝色渐变色
|
||
|
|
- (void)styleGradiBlueColor;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|