nicklockwood / FXBlurView

[DEPRECATED]
Other
4.94k stars 713 forks source link

expand on changing the tint color #69

Closed maxmitch closed 10 years ago

maxmitch commented 10 years ago

I have tried putting

self.FXBlurView.tintColor = [UIColor clearColor];

Inside the viewdidload on my .m where the uiview is nested. But that does not work? I have also done

#import "FXBlurView.h"

on the .m

How are you supposed to do it?

I have also tried this:

FXBlurView *BlurView = [[FXBlurView alloc] init];
BlurView.tintColor= [UIColor clearColor];

Sorry for my ignorance

nicklockwood commented 10 years ago

When you say it doesn't work, what is it doing, and what did you expect it to do?

maxmitch commented 10 years ago

it is changing nothing. I am wanting to stop it from tinting blue

maxmitch commented 10 years ago

Can you help?