MatthewYork/MYBlurIntroductionView

Panel Did Appear not getting called

cnmcgrath opened this issue · 5 comments

When I create a custom panel and have it as the first panel in the array, the method panelDidAppear is not called.

Yep, same here. Other panels fire ok, just not the first.

I managed to fix it by adding the following at the end of the buildScrollViewLeftToRight method.

//Trigger the panel did appear method in the delegate
if ([Panels[0] respondsToSelector:@selector(panelDidAppear)]) {
    [Panels[0] panelDidAppear];
}

Seems to work ok

Awesome, looks like it worked for me too.

I have formally added this fix in 2ab6e0a I will work it into a cocoa pod soon

Thanks!

No worries at all - glad to help and thanks very much for a great
component!!!

On Fri, Oct 10, 2014 at 11:18 PM, Matthew York notifications@github.com
wrote:

Closed #22
#22.


Reply to this email directly or view it on GitHub
#22 (comment)
.