4

Is there a resource out there some place that has custom UITabBarSystemItem icons that others can use. I know you get some from Apple to start, but I would imagine there are a lot more that are very common. I don't see a reason for each person to recreate the wheel for things like home, settings, etc...

Jason
  • 17,276
  • 23
  • 73
  • 114

4 Answers4

3

Here is a list of some great resources I found. I have no connection with any of these sites just some resources I think are useful.

Collections:

Free:

Free and paid:

Paid:


Create your own:

Alex Coplan
  • 13,211
  • 19
  • 77
  • 138
2

You can get some free icons from Glyphish under the Creative Commons Attribution license.

Also, although it's not free there's a nice icon set available from eddit. These work fine for TabBar items.

pythonquick
  • 10,789
  • 6
  • 33
  • 28
1

Check out IconFinder. They have a very robust collection, and you can sort by image size. though these are not always perfect for the TabBar, you can find some good generic icons. You can also filter by license to find icons that are available for commercial use.

Reed Olsen
  • 9,099
  • 4
  • 37
  • 47
  • This is great. Thanks for the resource. Now, if I can only find a way to incorporate the skull and crossbones icon... – Jason Oct 12 '09 at 17:30
0

You can try use following:

UITabBarItem *anItem = [[UITabBarItem alloc]initWithTabBarSystemItem:UITabBarSystemItemMore tag:0];

And the system icons are described and shown in: http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UITabBarItem_Class/Reference/Reference.html

mychalvlcek
  • 3,956
  • 1
  • 19
  • 34
Sergio
  • 1