RNBlurModalView
RNBlurModalView copied to clipboard
Add depth to your alerts.
i want to change the dismissbutton style but ,how can i do
you forgot semicolon after free(pixelBuffer2)
As `- (CGSize)sizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size lineBreakMode:(NSLineBreakMode)lineBreakMode` is deprecated, added some conditional code to avoid ugly warnings
For iPhone6 and iPhone6P, the view that blur view show in has a zoom animation, how to cancel this zoom scale?
- (void)autoHeight { CGRect frame = self.frame; CGSize maxSize = CGSizeMake(frame.size.width, 9999); CGSize expectedSize = [self.text sizeWithFont:self.font constrainedToSize:maxSize lineBreakMode:self.lineBreakMode]; frame.size.height = expectedSize.height; [self setFrame:frame]; }
Hi! i just added some extra functionality to your modal, hope you like it. **note**: also exposed all your default variables, now users have access to variables like kRNDefaultBlurScale to...
- added a UITapGestureRecognizer instance variable (_tapGesture) - linked the _tapGesture with "hide" method (see initWithFrame) - added public method (void)tapAnywhereToClose:(BOOL)touch
Hi @rnystrom This commit resolves #45 . The problem can be seen in these screenshots for landscape mode (iOS7.1) in iPad. Pull requests #9 resolved similar issue but the solution...