Open
Description
Hi there, and thanks for a nifty component.
I am using the following code to present a custom view :
AproposView *apropos = [[AproposView alloc] initWithNibName:@"AproposView" bundle:nil];
RNBlurModal *blurModal = [[RNBlurModalView alloc] initWithViewController:self view:apropos.view];
[blurModal show];
In the AproposView, I have a button, which when I press generates an EXC_BAD_ACCESS message. I also tried other methods such as putting a tapgesture on an UIImageView but the result was the same.
Any pointers appreciated !