12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- //
- // LGAlertViewShadowView.m
- // LGAlertView
- //
- //
- // The MIT License (MIT)
- //
- // Copyright © 2015 Grigory Lutkov <Friend.LGA@gmail.com>
- // (https://github.com/Friend-LGA/LGAlertView)
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in all
- // copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- // SOFTWARE.
- //
- #import "LGAlertViewShadowView.h"
- @implementation LGAlertViewShadowView
- - (instancetype)init {
- self = [super init];
- if (self) {
- self.backgroundColor = UIColor.clearColor;
- self.userInteractionEnabled = NO;
- }
- return self;
- }
- - (void)drawRect:(CGRect)rect {
- [super drawRect:rect];
- if ((!self.strokeColor && !self.shadowColor) || (!self.strokeWidth && !self.shadowBlur)) return;
- CGContextRef context = UIGraphicsGetCurrentContext();
- // Fill
- if (self.shadowBlur && self.shadowColor) {
- CGContextSetShadowWithColor(context, CGSizeZero, self.shadowBlur, self.shadowColor.CGColor);
- }
- CGRect drawRect = CGRectMake(self.shadowBlur,
- self.shadowBlur,
- CGRectGetWidth(rect) - self.shadowBlur * 2.0,
- CGRectGetHeight(rect) - self.shadowBlur * 2.0);
- UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:drawRect
- byRoundingCorners:UIRectCornerAllCorners
- cornerRadii:CGSizeMake(self.cornerRadius, self.cornerRadius)];
- [path closePath];
- [UIColor.blackColor setFill];
- [path fill];
- // Remove black background
- CGContextSetShadowWithColor(context, CGSizeZero, 0.0, nil);
- CGContextSetBlendMode(context, kCGBlendModeClear);
- [path fill];
- CGContextSetBlendMode(context, kCGBlendModeNormal);
- }
- @end
|