Giter Site home page Giter Site logo

notification about dllocalnotifications HOT 2 CLOSED

d7laungani avatar d7laungani commented on June 3, 2024
notification

from dllocalnotifications.

Comments (2)

d7laungani avatar d7laungani commented on June 3, 2024 1

They way this library is designed it is not possible .

from dllocalnotifications.

d7laungani avatar d7laungani commented on June 3, 2024 1

Sorry for my hasty reply but if you are referring to being able to detect when one of the notficiations you send is called you can use this block of code. It is not a function of my library but a part of Apple's protocol.

func application(_ application: UIApplication, didReceive notification: UILocalNotification) {
        
        if ( application.applicationState == UIApplicationState.active) {
            print("Active")
            // App is foreground and notification is recieved,
            // Show a alert.
            if #available(iOS 8.2, *) {
                UIAlertView(title: notification.alertTitle, message: notification.alertBody, delegate: nil, cancelButtonTitle: "OK").show()
            } else {
                print("Received Local Notification:")
                print(notification.alertBody)
            }
            
        } else if( application.applicationState == UIApplicationState.background) {
            print("Background")
            // App is in background and notification is received,
            // You can fetch required data here don't do anything with UI.
        } else if( application.applicationState == UIApplicationState.inactive) {
            print("Inactive")
            // App came in foreground by used clicking on notification,
            // Use userinfo for redirecting to specific view controller.
            
        }
    }

from dllocalnotifications.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.