2016-06-10 28 views
2

對不起,關於標題,真的不知道怎麼說這個問題。這裏有一張圖片可以幫助您:enter image description hereUITesting如何獲得屬於tabBar部分的數字?

我希望能夠將通知標籤旁邊的數字「5」變成一個變量,並且正在努力實現。該「通知」選項卡就是這個按鈕

XCUIApplication().tabBars.buttons["Notifications"] 

回答

2

每個UITabBarItembadgeValue

tabBarController?.tabBar.items?[3].badgeValue 
+0

上添加,更新通知,您可以看到的量,只是做:tabBarController .tabBar.items? ?[3] .badgeValue ++或 - – user2277872

+1

其實++自Swift 2.2以來已被棄用。我會做一些像tabBarController?.tabBar.items?[3] .badgeValue + = 1 – guidev

+0

沒有意識到;會記筆記 – user2277872

相關問題