Why do my notifications not show when I swipe down anymore?

please tell me how to re-start my notifications they are not available when I swipe down from the top of the screen

Hi kellygreenthumb,
If you are having an issue with Notifications not being available on your iPhone, I would suggest that you troubleshoot using the steps in this article -
Understanding notifications on iPhone, iPad, and iPod touch - Apple Support
The section most relevant is -
Get help
Push notifications require an active Wi-Fi or cellular connection.
Notifications use Wi-Fi only when a cellular connection is unavailable. Firewalls and proxy servers may affect your ability to receive notifications. For more information, see Unable to use Apple Push Notification service (APNs).
If you're not receiving notifications for a specific app, try these steps:
Verify that the app supports notifications.
After installing an app or restoring a backup to a different iOS device, open the app to begin receiving notifications. If the app requires entering or logging in to an account, you will need to do this before receiving notifications.
Check Settings > Notification Center to ensure that the app is configured for notifications. If notifications do not appear in the Notification Center, verify that the Notification Center setting for the app is enabled.
Thanks for using Apple Support Communities.
Best,
Brett L

Similar Messages

  • My control center and notification center are not showing when I swipe in there respective locations. Does anybody know why?

    My control center and notification center are not showing when I swipe in there respective locations. Does anybody know why?

    Thank you for the sugestion, but it was working fine both on the lock screen and on my home screen. I check all my settings and it is how it was from Friday, when I got the iPhone 5s. It just stop working.  The only way I can fix it is by shutting down the phone. It will work for a while, then it won't. 

  • Why are Facebook notifications not showing up in Notification Center?

    On OS X Mavericks 10.9.3 Facebook account is setup in Internet Accounts preference pane in System Preferences.
    Facebook is configured in Notifications preference pane in System Preferences.
    The Share Buttons widget is configured in Notifications preference pane in System Preferences.
    When I view my Facebook account via my web browser I usually have notifications available, but these notifications are not showing up in Notification Center.
    I do receive Calendar, Mail, etc. notifications in Notification Center so I know it works.
    I can send posts to Facebook via the Share Buttons widget in Notification Center, but presently I can receive nothing from Facebook..
    Anyone know of a solution to this problem?
    Thanks!  
    P.S. I read in another thread how Facebook can be setup in iMessage, but I don't want to use iMessage if I can get Notification Center to function properly.

    I got it to work yesterday. I tried none of the advice from discussions dealing with changing settings, enabling/disabling accounts, terminal commands, etc. All I did was ask a Facebook friend to respond to a post, and I was able to see the notifications in Notification Center.
    I know most have their settings configured correctly in System Preferences, but this is how my preferences are configured on OS X Mavericks 10.9.3:
    (1) Internet Accounts preference pane:
    There isn't much to configure here. I signed into my Facebook account. I checked or unchecked the Calendar and Contacts selections. It doesn't matter. I left the Description, found in the Details button window, as Facebook, but it doesn't matter, either.
    (2) Notifications preference pane:
    Facebook alert style is set to Banners, but Alerts will also work just fine. This setting is crucial because if it's set to None, no alerts will be received. I left Show notifications on lock screen unchecked, but it doesn't matter if I check it or not. And I put a check mark in Show in Notification Center, and the number of Recent Items can be set to whatever available setting desired, mine is set to 20 Recent Items.
    (3) Notifications preference pane:
    I placed a check mark on Show share button notifications in Notification Center, which is found when Share Button is selected in the list of notifications like Facebook, Calendar, Mail etc.
    Again, I did nothing else, and it just works. As a side note: before I got it to work I called AppleCare and a senior advisor spent considerable time with me trying to find out why it wasn't working. And his last bit of advice was that I should reinstall the OS. He needs retraining because that bit of advice was ill-advised, to say the least.
    I simply had no experience with receiving Facebook notifications in Notification Center 'on OS X', and the AppleCare employees had no training in this area, but if Notification Center is part of OS X, and Facebook notifications are part of Notification Center training in this area should be standard, but the AppleCare employees were guessing, not advising, which certainly is not technical support. Hence, my AppleCare dollars were not at work as expected.
    So without prior knowledge as to how the specifics of 'Facebook' notifications worked in Notification Center on OS X, my assumption was I would be notified each time someone tagged me, someone liked a comment, post or photo of mine, someone commented on one of my posts, or someone sent me a direct message.
    When I asked one of my Facebook friends to help me test it out, the following occurred (I don't remember if I had Safari up and running at this time - Note: I was signed into Facebook via Safari. I say this because AppleCare employees did explain on OS X some applications must be launched in order to received notifications, which in my mind is wasted time and code for Apple developers. Why offer notifications if the application is already launched? Ridiculous, if you ask me. That's what configuring each applications preference to set badge app icons, if it's not already coded by default.):
    (1) I sent a Facebook post via Notification Center using the Facebook Share Button.
    (2) I communicated with one of my Facebook friends by private message via iOS device and asked for a response to the post I sent.
    (3) My Facebook friend responded to my private message, but I don't remember if I received a notification in Notification Center.
    (4) My Facebook friend liked my post, shared my post, and commented on my post. I received two separate notifications in Notification Center on OS X, yet I received notifications on Facebook for all three actions, seen via iOS device. By the way, I wish Notification Center notifications would stay in Notification Center until we manually remove them. If they did stay until we manually remove them I would have time to find out which action of my friend I was received the notification for in Notification Center.
    That's it!

  • Why is the GUI not showing when i run it

    Why is it not showing the container
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    public class Progress extends JFrame {
         private String path;
         private JPanel topLeftPanel;
         private JPanel labelPanel;
         private JTextField pathField;
         public Progress()
              this.setTitle("PROGRESS Message Viewer");
              this.setSize(800, 600);
              Container contentPane = this.getContentPane( );
              // Technique for centering a frame on the screen.
              Dimension frameSize = this.getSize();
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              this.setLocation((screenSize.width - frameSize.width)/2,
                               (screenSize.height - frameSize.height)/2);
              topLeftPanel = new JPanel();
              topLeftPanel.setLayout(new GridLayout(1, 2));
              labelPanel = new JPanel();
              labelPanel.setLayout(new GridLayout(4, 1));
              JLabel l = new JLabel("Please enter the path to log file:  ");
              l.setForeground(Color.black);
              labelPanel.add(l);
              topLeftPanel.add(labelPanel);
              pathField = new JTextField(80);
              ActionListener aListener = new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        // Retrieve the path.
                        char[] pathFieldText = pathField.getText().toCharArray();
                        path = new String(pathFieldText).trim();
              pathField.addActionListener(aListener);
              contentPane.add(topLeftPanel);
              contentPane.add(pathField);
         public static void main(String []args){
              Progress p = new Progress();
    }

    Swing related questions should be posted in the Swing forum.
    Read the BoderLayout API documentation. If you don't specify a constraint then by default the component is added to the "CENTER". However only a single component can be displayed in any given area of the BorderLayout. So the second add(...) method replaces the first component added.
    Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]How to Use Layout Managers for more information.

  • Why the subvi can not show,when i use call by reference node.

    I used a call by reference node in function pallete,i follow the labview manuals and examples(dynamic load example), but i can not see the subvi show when the program running.
    Attachments:
    comshow.vi ‏75 KB
    交流稳态频谱.vi ‏19 KB

    Hi Sunny,
    Open your subVI,
    1. go to File->Vi Properties (or Ctrl+I)
    2. choose Window Appearance category
    3. choose Customize
    4. check "Show Front Panel When Called" (and "Close Afterwards ..")
    5. save the VI, close it and try again.
    Let us know if it's OK ...

  • Why does my HP6310 not show the "Work Online" option anymore. It only displays work offline.

    I have an HP6310 that is wired to a wireless router and now I cannot print.  It says the printer is offline and I cannot change it back to online......I do not have that option.  Can anyone help!!!  THANKS!

    Print a Wireless Network Test from the front of the printer (Network menu).  Is it connected to your router with a valid IP address (not 0.0.0.0 or 169.254.x.x)?
    What operating system?
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • When I sync iphone to itunes, why do my soundtracks not show as albums but via artist?  IE: Pulp Fiction has 16 songs by different artists.  In itunes I can pull up pulp fiction and play the 16 songs.  In iphone sync the 16 songs are seperate

    When I sync iphone to itunes, why do my soundtracks not show as albums but via artist?  IE: Pulp Fiction has 16 songs by different artists.  In itunes I can pull up pulp fiction and play the 16 songs.  In iphone sync the 16 songs are seperate and listed by Al Green, cowboy junkies etc... How to fix this so the ipod part of my iphone will show & play the soundtracks as albums... thanks.

    What is selected under the Music tab for your iPhone sync preferences with iTunes?
    If you have chosen selected playlists, artists, albums, and genres - if Pulp Fiction is available under the Albums section to be selected as an Album to be transferred to your iPhone, is it selected?
    If so, when you select Albums via the iPod on your iPhone, the album is not available there to select?
    You can always create an iTunes playlist with these songs placing the songs in your preferred order.

  • WHy does my iPhone not show up in my iTunes when I plug it in?

    WHy does my iPhone not show up in my iTunes when I plug it in?

    It could be for any number of reasons. Since you do not identify the computer OS you use, here is information for both.
    Windows:     http://support.apple.com/kb/TS1538
    OSX:     http://support.apple.com/kb/TS1591

  • Why "stop download video" feature not show when playing video

    why "stop download video" feature not show when playing video,, i hope you can give me Solution for this problem because when i using 3g internet, it downlaod the video Quickly ,,, so it consume the Balance

    Do you have Flash installed?   Check HD > Library > Internet Plug-Ins
    If the Flash Player app is not in the Internet Plug-ins folder, download and install from here.
    When you post for help, please state which OS X is installed.
    If you aren't sure, click About this Mac from your Apple menu 
    Troubleshooting advice can depend on that information.

  • Why does Local Folders not show up when I install Thunderbird on certain computers?

    I've installed Thunderbird on my computer and it looks normal with "Local Folders" showing up in the left pane. I didn't add an email account, I just installed Thunderbird and an add-on called ImportExport tool and left it with only Local Folders. But when I try to do the same thing and install it on someone else's computer to help them import an .mbox file, when I install Thunderbird on their computer, "Local Folders" is not there. The left pane is just completely blank. And it looks like I can't import an .mbox file without it being there. I tried installing it on another laptop too and the same thing happened with no Local Folders. Why is "Local Folders" not showing up for these other two computers?

    I circumvented the problem by copying the c:\users\username\appdata\local\thunderbird folder and the c:\users\username\appdata\roaming\thunderbird folder from my working PC to the nonworking computers, and Local Folders appeared in Thunderbird on those computers. It seems like these files aren't being generated properly on installation.
    I tried uninstalling Thunderbird from my working PC and reinstalling it again to see what would happen (after also deleting those two appdata folders so that fresh ones would be created), and this time Local Folders did not appear on my PC as well. I don't think I did anything different during installation either. So I'm not sure why the Local Folders are no longer being generated at installation.

  • Why Dynamic Parameter is not working, when i create report using stored procedure ?

    Post Author: Shashi Kant
    CA Forum: General
    Hi all
    Why Dynamic Parameter is not working, when i create report XI using stored procedure ?
    Only i shaw those parameters which i used in my stored procedure, the parameter which i create dynamic using stored procedure
    is not shown to me when i referesh the report for viewing the results.
    I have used the same procedure which i mention below but can not seen the last screen which is shown in this .
    ============================================================================================
    1. Select View > Field Explorer2. Right-click on Parameter Fields and select New from the right-click menu.3. Enter u201CCustomer Nameu201D as the name for your parameter4. Under u201CList of Valuesu201D select u201CDynamicu201D5. Under the Value column, click where is says u201Cclick here to add itemu201D and select Customer Name from the drop-down list. The dialog shown now look like the one shown below in Figure 1. Click OK to return to your report design.
    Dynamic Parameter Setup6. Next, select Report > Select Expert, select the Customer Name field and click OK.7. Using the drop-down list beside select u201CIs Equal Tou201D and using the drop-down list, select your parameter field (it should be the first field). 8. Click OK to return to your report design and see the parameter dialog.The parameter dialog will appear and show you a dynamic list of values that is updated each time your run your report. It couldnu2019t be easier! In our next tutorial, we will be looking at how to use this feature to create cascading parameter fields, where the values are filtered by the preceding selection.
    Dynamic Parameters in Action
    My question is that whether dynamic parameter is working with storedprocedure or not.
    When i added one table and try to fetch records using dyanmic prameters. after that i am not be able to find the dynamic parameter option when i referesh my report.
    One more thing when i try the static parameter for my report, the option i see when i referesh the screen.
    Please reply soon , it's urgent
    Regards
    shashi kant

    Hi Kishore,
    I have tested the issue step by step by following you description, while the first issue works well in my local environment. Based on my research, this can be caused by the lookup expression or it indeed return Male value based on the logic. If you use the
    expression below, it will indeed only return the Male record. So please try to double-check the record in the two datasets and the expression in your environment:
    =lookup(first(Fields!ProgramID.Value,"DataSet1"),Fields!ProgramID.Value,Fields!Gender.Value,"DataSet2")
    As to the second issue, please try to use the following expression:
    =Count(Lookup(fields!ProgramID.value,fields!ProgramID.value,fields!Gender.value,"DataSet2"))
    Besides, if this issue still exist, in order to trouble shoot this issue more efficiently, could you please post both the .rdl  file with all the size properties to us by the following E-mail address?  It is benefit for us to do further analysis.
    E-mail: [email protected]
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Why apple tv does not show in itune?

    why apple tv does not show in itune?

    Welcome to the Apple Community.
    I assume you have the Apple TV 1.
    Often a restart of ALL your equipment will help, it may also be a result of instaling or updating security software (check your security settings).
    If problems persist, navigate to Settings > Computers > Your Library on the Apple TV, you may be told you will lose all synced content, but you can sync it back afterwards, you won't lose any purchased content that has yet to be transferred. Then select Settings > Computers > Connect To iTunes, note the passcode that appears on screen, click on the device in iTunes and enter the passcode when prompted.

  • IOS7 Notifications not showing in the lock screen

    Hello,
    During the day, my notifications in the lock screen show up without a problem. The problem is that for long periods of time, notifications do not show up in the lock screen. When I wake up in the morning to check the lockscreen, notifications do no show up at all. I can acess them in the control center, but they still won't show up in the lock screen.
    I have selected my notifications to show up as banners and to show up in the lock screen. I do not have do not disturb activated.
    Has anyone had a similar problem? I currently have iOS 7.0.3
    In advance, thank you for your help.

    I'm having the same problem...
    DND is off
    Show on lockscreen is checked on the notification for the app i want it to show
    Some apps show, some apps only show when i drop down the Notification Center in lockscreen
    mail, whatsapp, missed calls, show in lockscreen
    other than that...they show only in notification center...
    any ideas?

  • Slideshow: why do certain photos not show?

    slideshow: why do certain photos not show; they are properly referenced
    Let me expand on this: I have 570 photos in a slide show and all are properly referenced in my library. In the slideshow window, I can see all the pics in the bottom box and when I run "preview slideshow", certain pictures don't appear in the top box whilst the curser moves across the picture in the bottom box. Likewise, if I run the full screen slideshow, that picture(s) does not appear (I have a blank screen); the next picture does show up, howerver... This happens with several dozen pictures, always the same, randomnley amongst the 570...

    Hello Tony and thank you. I regenerated and rebuilt thumbnails; I deleted the slide show and rebuilt it; nothing works. Now, I noticed something weird. All pictures are in an Aperture project and are properly referenced as I said; all the pictures in this project come from a old iPhoto project where some of the pictures are in a "Modified" folder, others in an "Original" project; it is all the pictures in the "Original" project that don't show up in the slide show.... Do you have any idea what I should do?

  • Why did the trace NOT show the other switches in between?

    I have a PC that is connected to a switch (A) in a network. Switch A has many switches in between and connects to another switch B. When I did a trace to the server, the last switch I see in the result is switch B. Also, when I checked to which port of switch B that the server was connected, It showed as Po1. When I did a show cdp neighbor for the interfaces for the interfaces involved inthe bundle, I get a switch and then another. Why did the trace NOT show the other switches in between? Why did I get an arp on Switch B? Could some one explain?

    It's hard to tell, but if you have L2 switches, the addresses on those L2 switches are for management purposes only and you won't see a response from a trace. The only time you'll see a response is when the packet is routed between devices and not switched. You'll get an arp request/response across a single vlan. If you have vlan 10 across 10 switches, all 10 switches will see an arp request because they're broadcasted throughout the whole vlan.
    HTH,
    John
    *** Please rate all useful posts ***

Maybe you are looking for