Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active August 9, 2016 23:37
Show Gist options
  • Save KentarouKanno/a0e982b2cd50f1b3c422bda4b0e9eb51 to your computer and use it in GitHub Desktop.
Save KentarouKanno/a0e982b2cd50f1b3c422bda4b0e9eb51 to your computer and use it in GitHub Desktop.
UITabBarItem

UITabBarItem

★ UITabBarItemに画像を設定する

let itemImage = UIImage(named: "image")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal)
let item = UITabBarItem(title: "item", itemImage: image, tag: 1)

★ バッジを付ける(String)

item.badgeValue = "1"

★ SystemItemを設定する

let item = UITabBarItem(tabBarSystemItem: .Contacts, tag: 1)

/*
UITabBarSystemItem
    
More
Favorites
Featured
TopRated
Recents
Contacts
History
Bookmarks
Search
Downloads
MostRecent
MostViewed
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment