rnystrom / RNBlurModalView

Add depth to your alerts.
MIT License
830 stars 143 forks source link

UITableView crashes when i scroll through cells #37

Open swaza opened 10 years ago

swaza commented 10 years ago

I am using the following code to present my UITableView as a modal.

MusicViewController MusicVC =[[MusicViewController alloc] initWithNibName:nil bundle:nil]; RNBlurModalView modal; modal = [[RNBlurModalView alloc] initWithView:MusicVC.view]; [modal show]; modal.isNavigationStyle = YES; The MusicVC gets presented without any issues and i get a nice blur effect in the background . However when i scroll up and down the MusicVC tableview cells I get a crash. Any help much appreciated.

Below is how my viewDidLoad looks like

}