如何设置标签栏徽章



我只是想添加一个'!'当有一个新的项目,并有它删除一旦标签栏被点击。我不知道该把代码放在哪里。

基本上,当有一个通知或一个新的会话创建,或一个更新到现有的会话,我想要一个!要在标签栏上弹出图标,一旦用户点击了标签栏上的项目!消失。

func conversationViewController(viewController: ATLConversationViewController, didSendMessage message: LYRMessage) {
    println("Message sent!")
}


func conversationViewController(viewController: ATLConversationViewController, didFailSendingMessage message: LYRMessage, error: NSError?) {
    println("Message failed to sent with error: (error)")
}
func conversationViewController(viewController: ATLConversationViewController, didSelectMessage message: LYRMessage) {
    println("Message selected")

}
// MARK - ATLConversationViewControllerDataSource methods
func conversationViewController(conversationViewController: ATLConversationViewController, participantForIdentifier participantIdentifier: String) -> ATLParticipant? {
    if (participantIdentifier == PFUser.currentUser()!.objectId!) {
        return PFUser.currentUser()!
    }
    let user: PFUser? = UserManager.sharedManager.cachedUserForUserID(participantIdentifier)
    if (user == nil) {
        UserManager.sharedManager.queryAndCacheUsersWithIDs([participantIdentifier]) { (participants: NSArray?, error: NSError?) -> Void in
            if (participants?.count > 0 && error == nil) {
                //self.addressBarController.reloadView()
                // TODO: Need a good way to refresh all the messages for the refreshed participants...
                self.reloadCellsForMessagesSentByParticipantWithIdentifier(participantIdentifier)
            } else {
                println("Error querying for users: (error)")
            }
        }
    }
    return user
}
func conversationViewController(conversationViewController: ATLConversationViewController, attributedStringForDisplayOfDate date: NSDate) -> NSAttributedString? {
    let attributes: NSDictionary = [ NSFontAttributeName : UIFont.systemFontOfSize(14), NSForegroundColorAttributeName : UIColor.grayColor() ]
    return NSAttributedString(string: self.dateFormatter.stringFromDate(date), attributes: attributes as? [String : AnyObject])
}
func conversationViewController(conversationViewController: ATLConversationViewController, attributedStringForDisplayOfRecipientStatus recipientStatus: [NSObject:AnyObject]) -> NSAttributedString? {
    if (recipientStatus.count == 0) {
        return nil
    }
    let mergedStatuses: NSMutableAttributedString = NSMutableAttributedString()
    let recipientStatusDict = recipientStatus as NSDictionary
    let allKeys = recipientStatusDict.allKeys as NSArray
    allKeys.enumerateObjectsUsingBlock { participant, _, _ in
        let participantAsString = participant as! String
        if (participantAsString == self.layerClient.authenticatedUserID) {
            return
        }
        let checkmark: String = "✔︎"
        var textColor: UIColor = UIColor.lightGrayColor()
        let status: LYRRecipientStatus! = LYRRecipientStatus(rawValue: recipientStatusDict[participantAsString]!.unsignedIntegerValue)
        switch status! {
        case .Sent:
            textColor = UIColor.lightGrayColor()
        case .Delivered:
            textColor = UIColor.orangeColor()
        case .Read:
            textColor = UIColor.greenColor()
        default:
            textColor = UIColor.lightGrayColor()
        }
        let statusString: NSAttributedString = NSAttributedString(string: checkmark, attributes: [NSForegroundColorAttributeName: textColor])
        mergedStatuses.appendAttributedString(statusString)
    }
    return mergedStatuses;
}
// MARK - ATLAddressBarViewController Delegate methods methods

// MARK - ATLParticipantTableViewController Delegate Methods
func participantTableViewController(participantTableViewController: ATLParticipantTableViewController, didSelectParticipant participant: ATLParticipant) {
    println("participant: (participant)")
    self.addressBarController.selectParticipant(participant)
    println("selectedParticipants: (self.addressBarController.selectedParticipants)")
    self.navigationController!.dismissViewControllerAnimated(true, completion: nil)
}
func participantTableViewController(participantTableViewController: ATLParticipantTableViewController, didSearchWithString searchText: String, completion: ((Set<NSObject>!) -> Void)?) {
    UserManager.sharedManager.queryForUserWithName(searchText) { (participants, error) in
        if (error == nil) {
            if let callback = completion {
                callback(NSSet(array: participants as! [AnyObject]) as Set<NSObject>)
            }
        } else {
            println("Error search for participants: (error)")
        }
    }
}

}�

解决https://stackoverflow.com/a/29837976/2303865

假设您已经将消息数查询到一个名为counts的变量中,然后将该计数显示到第一个tabBarItem中。

var arrayOfTabBar = self.tabBarController?.tabBar.items as NSArray!
let tabItem = arrayOfTabBar.objectAtIndex(1) as! UITabBarItem
tabItem.badgeValue =  counts

最新更新