Close Menu
  • Home
  • AI
  • Big Data
  • Cloud Computing
  • iOS Development
  • IoT
  • IT/ Cybersecurity
  • Tech
    • Nanotechnology
    • Green Technology
    • Apple
    • Software Development
    • Software Engineering

Subscribe to Updates

Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

    What's Hot

    The Download: supercharged scams and studying AI healthcare

    April 26, 2026

    How Viasat is providing a blueprint for the industrial edge

    April 26, 2026

    Hampshire College to close: Why colleges are going out of business

    April 26, 2026
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram
    Big Tee Tech Hub
    • Home
    • AI
    • Big Data
    • Cloud Computing
    • iOS Development
    • IoT
    • IT/ Cybersecurity
    • Tech
      • Nanotechnology
      • Green Technology
      • Apple
      • Software Development
      • Software Engineering
    Big Tee Tech Hub
    Home»iOS Development»ios – UIBarButtonItem Doesn’t Reset the Badge
    iOS Development

    ios – UIBarButtonItem Doesn’t Reset the Badge

    big tee tech hubBy big tee tech hubSeptember 1, 2025022 Mins Read
    Share Facebook Twitter Pinterest Copy Link LinkedIn Tumblr Email Telegram WhatsApp
    Follow Us
    Google News Flipboard
    ios – UIBarButtonItem Doesn’t Reset the Badge
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link


    I’m currently working on integrating new iOS 26 features into my app, and so far, the process has been really exciting. However, I’ve encountered an issue when updating the badge of a UIBarButtonItem, and I’m hoping to get some insights or suggestions.

    The app has two UIViewController instances in the navigation stack, each containing a UIBarButtonItem.

    On the first controller, the badge is set to 1, and on the second, the badge is set to 2. In the second controller, there is a “Reset” button that sets the badge of the second controller to nil.

    However, when I tap the “Reset” button, instead of setting the badge to nil, it sets the value to 1.

    I would appreciate any ideas or suggestions on how to solve this problem. Maybe I am using the badge API incorrectly.

    Thank you!

    class ViewController: UIViewController {
        
        var cartButtonItem: UIBarButtonItem!
    
        override func viewDidLoad() {
            super.viewDidLoad()
    
            configureNavigationItem()
        }
        
        func configureNavigationItem() {
            cartButtonItem = UIBarButtonItem(image: UIImage(resource: .cartNavBar), style: .plain, target: self, action: #selector(showCart))
            cartButtonItem.tintColor = UIColor.systemBlue
            cartButtonItem.badge = .count(1)
            navigationItem.rightBarButtonItem = cartButtonItem
        }
        
        @objc func showCart() {
            // Add second view controller in navigation stack
            performSegue(withIdentifier: "Cart", sender: nil)
        }
    
    }
    
    class CartViewController: UIViewController {
        
        var cartButtonItem: UIBarButtonItem!
    
        override func viewDidLoad() {
            super.viewDidLoad()
    
            configureNavigationItem()
        }
        
        func configureNavigationItem() {
            cartButtonItem = UIBarButtonItem(image: UIImage(resource: .cartNavBar), style: .plain, target: nil, action: nil)
            cartButtonItem.tintColor = UIColor.systemBlue
            cartButtonItem.badge = .count(2)
            navigationItem.rightBarButtonItem = cartButtonItem
        }
        
        func updateBadge() {
            cartButtonItem.badge = nil
        }
        
        @IBAction func resetButtonPressed(_ sender: Any) {
            updateBadge()
        }
    
    }
    



    Source link

    Badge doesnt iOS Reset UIBarButtonItem
    Follow on Google News Follow on Flipboard
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    tonirufai
    big tee tech hub
    • Website

    Related Posts

    ios – Apply shadow only outside of a SwifUI transparent button?

    April 26, 2026

    ios – How to add pictures after keynote update with iPadOS 26.3.1?

    April 25, 2026

    ios – AVCaptureDevice.exposurePointOfInterest readback does not match set value on iPad Pro M4 / M3(UltraWide)and Gen2,3,4(TrueDepth) using resizeAspectFill

    April 25, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    The Download: supercharged scams and studying AI healthcare

    April 26, 2026

    How Viasat is providing a blueprint for the industrial edge

    April 26, 2026

    Hampshire College to close: Why colleges are going out of business

    April 26, 2026

    Bringing Professional-Level Skills to Cisco Networking Academy

    April 26, 2026
    Timer Code
    15 Second Timer for Articles
    20
    About Us
    About Us

    Welcome To big tee tech hub. Big tee tech hub is a Professional seo tools Platform. Here we will provide you only interesting content, which you will like very much. We’re dedicated to providing you the best of seo tools, with a focus on dependability and tools. We’re working to turn our passion for seo tools into a booming online website. We hope you enjoy our seo tools as much as we enjoy offering them to you.

    Don't Miss!

    The Download: supercharged scams and studying AI healthcare

    April 26, 2026

    How Viasat is providing a blueprint for the industrial edge

    April 26, 2026

    Subscribe to Updates

    Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

      • About Us
      • Contact Us
      • Disclaimer
      • Privacy Policy
      • Terms and Conditions
      © 2026 bigteetechhub.All Right Reserved

      Type above and press Enter to search. Press Esc to cancel.