1

How can I remove this mask?

selectionIndicatorImage

I don't found any solution about it.

Please help me

Thanks!

A_nto2
  • 1,106
  • 7
  • 16
B. Altan Kocaoglu
  • 373
  • 1
  • 7
  • 19

1 Answers1

2

I found this solution:

UIImage* emptyImage = [UIImage imageNamed:@"empty.png"];
[[UITabBar appearance] setSelectionIndicatorImage:emptyImage];

selectionIndicatorImage is now empty!

Looks good!

Thanks for all.

B. Altan Kocaoglu
  • 373
  • 1
  • 7
  • 19
  • You can use this category to create an empty image: http://ioscodesnippet.com/2011/08/22/creating-a-placeholder-uiimage-dynamically-with-color/ – Tom Susel Jun 01 '14 at 07:02