iOS Question Local Notification message display time

rfresh

Well-Known Member
Licensed User
Longtime User
Is there anyway to extend the time the local notification message displays at the top of the iPad screen? (My iPad app is running in the background). It looks like it displays for about 5 secs and then slides up and out of view. Is there any way to display it longer or until the user touches it to make it go away?

Thanks...

B4X:
    Dim ln As Notification
    ln.Initialize(DateTime.Now + 6 * DateTime.TicksPerSecond) '6 seconds from now
    ln.IconBadgeNumber = 5
    ln.AlertBody = "Reminder: Ice/Fuel XF Check"
    ln.PlaySound = True
    ln.Register
    hd.ToastMessageShow("Notification will fire in 6 seconds.", False)
 

tufanv

Expert
Licensed User
Longtime User
I don’t think that is possible.

Is there anyway to extend the time the local notification message displays at the top of the iPad screen? (My iPad app is running in the background). It looks like it displays for about 5 secs and then slides up and out of view. Is there any way to display it longer or until the user touches it to make it go away?

Thanks...

B4X:
    Dim ln As Notification
    ln.Initialize(DateTime.Now + 6 * DateTime.TicksPerSecond) '6 seconds from now
    ln.IconBadgeNumber = 5
    ln.AlertBody = "Reminder: Ice/Fuel XF Check"
    ln.PlaySound = True
    ln.Register
    hd.ToastMessageShow("Notification will fire in 6 seconds.", False)
 
Upvote 0
Top