23
A
回答
59
的Xcode 7.2.1斯威夫特2.1.1
你只需要設置badgeValue您所需的UITabBarItem如下:
tabBarController?.tabBar.items?[4].badgeValue = "1" // this will add "1" badge to your fifth tab bar item
// or like this to apply it to your first tab
tabBarController?.tabBar.items?.first?.badgeValue = "1st"
// or to apply to your second tab
tabBarController?.tabBar.items?[1].badgeValue = "2nd"
// to apply it to your last tab
tabBarController?.tabBar.items?.last?.badgeValue = "Last"
要刪除一個徽章從UITabBarItem只需添加零值它
tabBarController?.tabBar.items?.first?.badgeValue = nil
+0
爲什麼我的tabBarController是零? –
+5
找到了答案。因爲我已經在UITabBarController中,所以我不得不從上面的代碼中省略tabBarController。 –
相關問題
- 1. 調整UITabBarItem徽章位置?
- 2. 在UIViewController中設置UITabBarItem中的徽章值
- 3. 如何更改UITabBarItem徽章位置?
- 4. iPhone:從uitabbaritem讀取徽章值問題
- 5. 是否可以自定義UITabBarItem徽章?
- 6. 使用NotificationCenter設置徽章值
- 7. 如何在CustomTabbarItem中設置徽章值
- 8. 設置徽章在我的Chrome擴展
- 9. 徽章設計XML
- 10. 快速聯繫徽章assignContactFromPhone在我的應用程序
- 11. 在推送時設置徽章UITabBarController
- 12. 徽章解鎖通知設置
- 13. 如何添加徽章到系統生成的「更多」UITabBarItem
- 14. 確實需要SyncAdapter添加快速聯繫徽章嗎?
- 15. 在AppDelegate的UITabBar項目上設置徽章值
- 16. 使用OneSignal從收到的通知中設置徽章值
- 17. 設置器中的快速返回值
- 18. Mahapps metro徽章控制如何更新徽章的價值
- 19. 是否有可能更改UITabBarItem徽章顏色
- 20. 如何使用自定義UIImage作爲UITabBarItem徽章?
- 21. 僅針對當前設備重置CKNotificationInfo徽章值
- 22. 如何使用PushSharp爲Windows Phone 8設置徽章值
- 23. iOS 7 UITabBar徽章位置
- 24. 如何將應用程序徽章號碼設置爲0? (使用解析和快速)
- 25. 如何設置標籤中的徽章位置
- 26. Tabhost-設置標籤中的徽章位置Android
- 27. Cookie不能快速設置
- 28. 快速設置類屬性
- 29. 設置快速DOC時間
- 30. 設置DataGridView快速行高
你想參考紅色的徽章與白色'1'? 「一個警示標籤」並不是特定的;) – milo526
哈哈,我也這麼認爲,但這是我能想到的最好的方式來描述它。是的,那個1的紅色徽章就是我想要的。 – Gino
對不起,最近工作非常忙碌,我會看看,一旦我有時間,並upvote它。乾杯 – Gino