thermogl / TITokenField

An iOS version of the NSTokenField (See To: field in Mail and Messages).
http://thermoglobalnuclearwar.com/opensource/
599 stars 172 forks source link

TITokenFieldView with clear background #93

Closed paresh-navadiya closed 9 years ago

paresh-navadiya commented 9 years ago

I want clear background for TITokenFieldView When i use [_tokenFieldView setBackgroundColor:[UIColor clearColor]]; nothing changes. When i use [_tokenFieldView.tokenField setBackgroundColor:[UIColor clearColor]];

Result is shown in image

screen shot 2014-09-19 at 9 59 50 am

Can anyone help me

thermogl commented 9 years ago

It's the shadow. You should be able to disable it without affecting anything critical.

paresh-navadiya commented 9 years ago

But question how can I?

thermogl commented 9 years ago

Get rid of this stuff from -setup

[self.layer setShadowColor:[[UIColor blackColor] CGColor]]; [self.layer setShadowOpacity:0.6]; [self.layer setShadowRadius:12];