lmcd / LMAlertView

Open Source, customisable clone of UIAlertView for iOS 7
MIT License
794 stars 125 forks source link

Very buggy when working with iOS 8 WebKit #51

Open albertgh opened 10 years ago

albertgh commented 10 years ago

*\ WebKit discarding exception: -[WebActionDisablingCALayerDelegate superview]: unrecognized selector sent to instance

I think the problem is caused by

"CALayer+ModalAlert.m"

xmzqhl commented 9 years ago

I also met this problem,Do you know how to fix it now?

albertgh commented 9 years ago

@wybflb I just use another similar library ......

xmzqhl commented 9 years ago

@albertgh I also think so.

albertschulz commented 9 years ago

The problem is in the windowForView: method. tempView.superview wants to receive a superview from WebActionDisablingCALayerDelegate, but it does not recognize this selector. I will send a Merge Request which will fix this.

albertschulz commented 9 years ago

Here we go: https://github.com/lmcd/LMAlertView/pull/53

xmzqhl commented 9 years ago

Yeah,Thank you very much.exciting

albertgh commented 9 years ago

@albertschulz Thanks.