Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How does an application get information about local ios notifications. Specifically, how can I cancel all pending local notifications belonging to a particular app like Facebook, etc.
To get remaining all local notification
NSLog(#"%#",[[UIApplication sharedApplication]scheduledLocalNotifications]);
and to cancel all local notification
[[UIApplication sharedApplication]cancelAllLocalNotifications];
Maybe it will help you.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 months ago.
Improve this question
Can I somehow catch Windows notifications in RAD Studio? Such as browser notifications, or notifications from other application. Can I get the notification content?
UPDATE:
My program runs in the background, and when I receive a notification, for example a new email, my program brint to front and the notification body visible in the Memo.
If you are referring to Windows Notifications usually shown in the Action Center sidebar, then Delphi provides a TNotificationCenter component which supports it. For a how-to see the documentation: Using Notifications
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I want to record my voice and set it as a sound in local notification payload. Please let me know if there is anyone facing the same issue?
To play a recorded voice as notification sound you have to store the recorded voice data in Library/Sound/Filename
Please check attached screenshot of apple documments.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
We are registerting our iOS application for APNS. After that APNS provide a deviceToken. Is there any process to get the iOS device registration URL on APNS.
I think No. You need your own server where you will put notification logic.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I have an application in which I want to offer the ability to pay for answers to questions in digital format. I.e, the user would submit a question, and purchase an answer which I would construct and send back to the app. Is this allowed?
I'm not sure if purchasing answers to unknown questions directly would be allowed or not, but I'm sure you could simply sell 'credits' that would give x number of requests.
Yes, this is allowed. See section 11 of the App Review Guidelines for iOS, found here, login required.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Can i create app that the user can't delete without iTunes id or password?
Can i create app that the user can't cancel to background with home button without iTunes id or password?
Thanks in advance
No and No. The philosophy is that the user should always feel in control of their apps. You can only prevent app deletion on a device-by-device basis (using the device settings).