How to open Reminder Event Default screen using our app - ios

I am creating a app where i can set the reminder based on Location and date.Apple has already given the UI if you are using Reminder which has both option.Can any one help me out that how can i open that Create event screen.

Related

Hide Broadcast Upload Extension in Control Center

I have implemented the Broadcast Upload Extension in my app.
My requirement is that the user must start it only within the app, but right now there is an entry in the recorder button in Control Center that lets the user also start it from there.
My question is: how can I remove that entry in Control Center so the only way to start the Upload Extension is via my container app?
Thanks in advance.
Unfortunately you can't hide recorder button from Control Center, but you can check your application state when user start recording from Control center with Broadcaster UI Extension, if you need any action before start recording you can inform user with Broadcaster UI extension.

Notification/Widget on lock screen with button in Swift

I have an app that contains stopwatch and when time is running and the app enters background I would like to have a notification on lock screen and in Notification Center (when you swipe down). The notification should contain actual time of the stopwatches and user should be able to stop/start the stopwatches.
I was trying to achieve this using UNNotificationContentExtension but as documentation says:
When an iOS device receives a notification containing an alert, the system displays the contents of the alert in two stages. Initially, it displays an abbreviated banner with the title, subtitle, and two to four lines of body text from the notification. If the user presses the abbreviated banner, iOS displays the full notification interface, including any notification-related actions. The system provides the interface for the abbreviated banner, but you can customize the full interface using a notification content app extension.
I found out that I am able to edit just full notification interface which means that when user gets notification and opens it I can show him whatever I want (I tried mediaPlayPauseButtonType to handle stopwatches). But when I check the lockscreen the notification stays default.
What are the possibilities to achieve Notification similar to Spotify - when you play song, you can pause the song and you can see the time etc. from the lockscreen?
Thanks!

Localnotification with background mode, Without click on notification open an UIAlertView

When my app is notify by local notification then without click on notification i want to open an UIAlertView. Is this possible for IOS?
I am attaching screenshot for detail understanding.
With iOS8 you can display actions for the user to choose from in the form of buttons. These buttons can launch your app in the background to perform some task or they can launch your app into the foreground as you can do with the notifications available in older versions of iOS.
You can't, however, display a UITextField for the user to enter data.

iOS local notifations on new pictures in gallery

I would like to show a badge on my app icon when new pictures are taken on the phone stock camera.
How can I register for this event? If not possible , is there a way to tell when iCloud of the user added new photos and get notify the user to open the application?
If not can I schedule an event to the user (lets say every hour) and run some code to check if pictures were added to the gallery - if so display a badge so the user will open my app?

Opening application from notification bar in blackberry

For my application I need to creat an icon in notification bar.I am able to do this.
My problem is I need to open this application from notification bar.
When ever user selects notification screen my app status should display. when user selects my app my application should open directly.
Have a look at the following classes:
ApplicationMessageFolder
ApplicationMessageFolderRegistry
And the following interfaces:
ApplicationMessage
ApplicationMessageFolderListener
Register a folder for your app, add a listener to the folder, and use the AppicationMessageFolder.fireElementAdded() method to add status messages to the folder. When the user clicks on the notification bar, the Messages app displays the available folders and their contents. When the user clicks on one of your status messages, the folder's listener will notify your app so it can react accordingly.

Resources