2,307 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
49
views
The getDeliveredNotifications returns an empty array for local notifications
When I try to get a list of delivered local notifications, I consistently get an empty array, although they are in the notification center. I just do
UNUserNotificationCenter.current()....
1
vote
0
answers
37
views
iPadOS: Notifying users when driver extension is loaded and application is not running
Currently, I am developing an iPadOS app that comes bundled with a Driverkit based extension for managing USB devices. This extension runs in the background, matching against a specific set of USB ...
1
vote
1
answer
1k
views
How to schedule irregular local notifications (even if after the app gets killed)
so am building an app that sends about 5 local notifications to the user, at an irregular interval (the timings are internally calculated).
First i tried using Scheduled notifications from the package ...
1
vote
1
answer
131
views
How to change target framework for a unity project with UWP platform (I need it to implement ToastNotification)
I have a Unity project in UWP platform. I want to implement ToastNotification for it. As It have found in Microsoft Docs, I have to change the TFM to net6.0-windows10.0.17763.0 to be able to use All ...
0
votes
1
answer
125
views
How to schedule local notifications for specific days and time interval in Swift?
I need to update this schedule function:
func scheduleNotifications(numberOfNotifications: Int) {
// Create notification content
let content = UNMutableNotificationContent()
content.title =...
1
vote
1
answer
329
views
How to redirect when local push notification clicked?
I build a horoscope app, its has a local push notification. I want to when clicked notification, redirect it to a specific page but don't. My app first page always opens.
my appDelegate File;
...
0
votes
0
answers
105
views
How do I use DatePicker to schedule local notifications in Swift?
I am fairly new to iOS development. I thought it would be cool to use the DatePicker to schedule local notifications for an app I'm making.
I have @Binding var date = Date() initialized as the ...
0
votes
1
answer
2k
views
Request Notifications Permission in a .Net MAUI App for IOS
I have the code in hand from other sources to send a local notification using Plugin.LocalNotification. Good stuff. The code works on Windows. It does not appear to work on IOS (using Hot Restart).
...
1
vote
0
answers
275
views
Execute a function when receiving a local notification
I'm trying to execute a function when a local notification is triggered. I have an app that uses local notifications to run a timer, and when the timer finishes I want to save some data to record that ...
0
votes
0
answers
185
views
Infinite local notifications for alarm app
I'm currently writing an alarm application, which should be sending infinite local notifications if app is terminated. Similar logic is implemented in Alarmy app.
Local push notifications count is ...
5
votes
0
answers
882
views
Update live activity with local notification
I know we can update live activities using remote push notifications with APNs.
But is it also possible to update a live activity using a local notification?
0
votes
1
answer
279
views
Notifications in iOS with sound only, no badges?
Is it possible to send sound notifications only, without badges (locally)? I have tried setting only the sound property of UNMutableNotificationContent(), but the notification won't sound or show up ...
0
votes
1
answer
152
views
Communication between DidReceiveNotificationResponse in AppDelegate.cs to ViewController on click of a notification
I am creating notifications like this when the user enters a geo fence.
UNMutableNotificationContent notificationContent = new UNMutableNotificationContent();
notificationContent.Title = "Entered ...
0
votes
0
answers
220
views
When receiving notifications while app is terminated nothing appear , when I open my app the terminated notification start appearing . flutter project
My app notification work good in background and foreground and have this problem in terminated state
I use flutter local notification and flutter firebase messaging .
this is my firebase messaging ...
1
vote
0
answers
254
views
Flutter Scheduled Daily Notification Change Title body for each time app notifies
i have developed app which has daily temperature notification as functionality.
I am able to implement scheduled daily notification at specific time, i need to change value of title and body for each ...