Questions tagged [notificationcenter]

Notification Center is an interface designed by Apple that allows users to easily view notifications from all applications in one view. Notification Center is available in iOS 5 and up.

Notification Center is an interface designed by Apple that allows users to easily view notifications from all applications in one view. Notification Center is activated by dragging down from the devices status bar (top of screen), and removed similarly by dragging up from the bottom of the screen.

Options for Notification Center include:

  • Weather widget (powered by Yahoo)
  • Stocks widget (powered by Yahoo)
  • Sort by time
  • Sort manually (allows users to manually arrange the order in which notifications will appear from top to bottom)
  • Ability to enable/disable notifications for individual applications

Notification Center is available in iOS 5 and up.

242 questions
0
votes
1 answer

How to remove interactive remote notification from notification center > iOS 8

I'm facing a problem trying to remove from Notification Center my interactive remote notification when tapped an option in Banner Mode (see image). Well, I can't find the way to do it (I will like to have the same behavior when you slide on blocked…
Sophy Swicz
  • 1,307
  • 11
  • 21
0
votes
1 answer

Receiving meaningful notifications from other apps and NotificationCenter

I want to receive notifications from other applications that would appear on lock screen- similar to how Pebble and other smart watches receive them. It is easy to register for notifications…
user3599495
  • 107
  • 8
0
votes
1 answer

Show alertView in appDelegate

I'm trying to add an alertView before the notification/control center is visible with 2 buttons. One button would be "ok" and the notification/control center should then open. The second button should be cancel, and the notification/control center…
Jessica
  • 9,379
  • 14
  • 65
  • 136
0
votes
1 answer

How to link OSX Notification center widget with main application?

How to link App extension (Widget for Notification center) with main application as in Things. For example I check checkbox in widget and this changes momentarily appears in main window of application? I did not find solution of this question in…
0
votes
1 answer

How can I update my iOS Today widget from the containing app?

I'm including a Today extension with the next release of my iOS app. The content of the widget updates only when the user makes a specific change to the database managed by the containing app. Is there a way to send some kind of signal from the…
Bill
  • 44,502
  • 24
  • 122
  • 213
0
votes
1 answer

Using TNotificationCenter.OnReceiveLocalNotification

I'm trying to catch the message in NotificationCenter in order to use it for other purposed, when i receive a notification into my device thru gcm php server i tried to catch the message with…
koul
  • 431
  • 2
  • 10
  • 20
0
votes
2 answers

Push notifications don't show up

I've added functionality for receiving remote notifications yet the behaviour is really weird. When the application is in a foreground, the method - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary…
Solomiya
  • 310
  • 4
  • 15
0
votes
0 answers

Stack one push notification in notification center

In case the user is busy and didn't check his notifications in the notification centre. I don't want my notifications to get stacked. that may lead to removing the app. by user. Therefore, when a notification receive I want to clear all previous…
hasan
  • 23,815
  • 10
  • 63
  • 101
0
votes
0 answers

NSNotificationCenter Add Observer not working in iOS

I am working a two applications in which one application get invoked by other application. If one of the application has been quited (Neither not in foreground or background), [[NSNotificationCenter defaultCenter] postNotificationName: was not…
0
votes
0 answers

OS X Yosemite Today Widget without Auto-Layout

I'd like to implement a Today Widget (OS X) without making use of Auto-Layout. I know that I can control the widget size via setPreferredContentSize:;, but whenever I disable Auto-Layout for the XIB of my widget, the widget is simply blank both in…
Raffael
  • 1,119
  • 10
  • 20
0
votes
0 answers

iOS App shuts down when notification center and recently used app list are opened

My iOS app simply shuts down when I open notification center while the app is visible and in focus. Same thing happens if I double click the home button to show the recently used apps list. This would seem to be an application lifecycle issue, but…
ntaj
  • 311
  • 2
  • 21
0
votes
2 answers

Can I get all existing Notification Center messages using Swift?

I'm wondering is there a way to get all of the messages in Notification Center. I already know how to post a message, but I don't know whether I can get the messages posted by other Apps into my App for usage.
albusshin
  • 3,930
  • 3
  • 29
  • 57
0
votes
1 answer

How to localize iOS 8 Today Widget?

I am trying to localize my iOS 8 Today center widget. I have a storyboard specifically for the widget and hit the localize button and selected Spanish. The same way I localized the normal part of the app. As you can see here: The files have the…
Stephen
  • 1,427
  • 1
  • 17
  • 42
0
votes
1 answer

Does Worklight have an API for adding local notifications to the Android notification bar / iOS notification center?

Does Worklight have an API for adding local notifications to the Android notification bar / iOS notification center? Use case - If the app is in the background, and if there is some information to be updated to the user, I would like to add a local…
0
votes
2 answers

Should Notificationcenter observer selector methods go in the header file?

One of the things i (still) have trouble getting into the back of my head is public/private methods, parameters and how it works compared to the Java world i have been living in for a long time. I have started using the notificationcenter since a…