MatthewYork / MYBlurIntroductionView

A super-charged version of MYIntroductionView for building custom app introductions and tutorials.
MIT License
1.53k stars 195 forks source link

Method definition for 'setBlurTintColor:' not found #13

Closed robmontesinos closed 10 years ago

robmontesinos commented 10 years ago

Great library! I'm getting the above warning message on the Demo. Any way of resolving this issue with an example of how to apply the blurTintColor properly? Thank you.

davidolesch commented 10 years ago

The problem is that MYBlurIntroductionView declares but does not implement

-(void)setBlurTintColor:(UIColor *)blurTintColor;

Instead, this method is implemented in AMBlurView

robmontesinos commented 10 years ago

OK thanks David - I guess I could just comment it out to get rid of the warning

MatthewYork commented 10 years ago

FIXED.

I had accidentally misnamed this method. I meant for it to be the setBackgroundColor: method, but must have gotten turned around somewhere along the way.

Much thanks for catching this.

Regards,

-Matt