Can't delete app. No "X" appears when I tap and hold to delete an app. iOS 7.

I am trying to delete an app. I know the process. Apps wiggle but no "X" appears that will app low me to delete. Why? Any suggestions?

Make sure the App you are tying to delete is not a preinstalled Apple App, as those cannot be removed.
If you are sure its not a default Apple app, make sure that "Deleting Apps" is not restricted in Settings->General Restrictions.

Similar Messages

  • Hello. I have a problem. I cannot delete any apps from my ipad. It won't even wiggle when i tap and hold on the icon. There's also no restrictions and passcodes in my settings. My photos on camera roll even get lost once i shut down my ipad. Please help.

    Hello. I have a problem. I cannot delete any apps from my ipad. It won't even wiggle when i tap and hold on the icon. There's also no restrictions and passcodes in my settings. My photos on camera roll even get lost once i shut down my ipad. Please help.

    The preinstalled apps, those that came as part of the iOS, cannot be deleted and will not shake or provide the black circle-X for deletion.
    Others should do that if you touch and hold for a few seconds.
    If they are not, do a reboot by holding both the power and home buttons until the apple logo appears and it restarts, ignoring the red slider if that appears.

  • I can't delete the icons of most recently opened apps. Won't wiggle when I tap and hold down the home button.

    Why can't I delete my most recently opened apps?  Before IOS7 I could get them to wiggle then close them.

    Double tap the home button and swipe upwards on the preview of the App (not the App Icon).

  • App bar not appearing when I tap the ellipses

    I'm trying to get my app bar to appear when I tap the 3 dots at the bottom of the screen, but when I do so it doesn't happen. Anyone know
    why & how this problem can be rectified?
    MainPage.xaml
    <Page
    x:Name="pageRoot"
    x:Class="HP.MainPage"
    DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Exits_Expert_London_Lite.Lines_and_Stations.WC"
    xmlns:common="using:Exits_Expert_London_Lite.Common"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:q42controls="using:Q42.WinRT.Controls"
    mc:Ignorable="d">
    <Grid Background="Black">
    <Grid.ChildrenTransitions>
    <TransitionCollection>
    <EntranceThemeTransition/>
    </TransitionCollection>
    </Grid.ChildrenTransitions>
    <Grid Name="CustomAppBarRoot" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" Loaded="CustomAppBarRoot_OnLoaded"
    ManipulationMode="TranslateY"
    ManipulationDelta="CustomAppBarRoot_OnManipulationDelta"
    ManipulationCompleted="CustomAppBarRoot_OnManipulationCompleted"
    Tapped="CustomAppBarRoot_OnTapped">
    <Grid.RenderTransform>
    <TranslateTransform X="0" Y="0"/>
    </Grid.RenderTransform>
    <Grid.Background>
    <SolidColorBrush Color="Black" Opacity="0.5"></SolidColorBrush>
    </Grid.Background>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <TextBlock Name="DotsTextBlock" FontSize="28" Text="..." HorizontalAlignment="Right" VerticalAlignment="Top"
    Margin="0 0 15 0" Tapped="DotsTextBlock_OnTapped" Width="50" Height="50" TextAlignment="Center">
    <TextBlock.RenderTransform>
    <TranslateTransform Y="0" X="11"/>
    </TextBlock.RenderTransform>
    </TextBlock>
    <StackPanel Name="ButtonsStackPanel" Grid.Row="1" Orientation="Horizontal">
    <AppBarButton Label="tfg" Icon="Add"/>
    <AppBarButton Label="tfg" Icon="Add"/>
    </StackPanel>
    </Grid>
    <Hub>
    <Hub.Header>
    <!-- Back button and page title -->
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="80"/>
    <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Button x:Name="backButton" Margin="-1,-1,39,0" Command="{Binding NavigationHelper.GoBackCommand, ElementName=pageRoot}"
    Style="{StaticResource NavigationBackButtonNormalStyle}"
    VerticalAlignment="Top"
    AutomationProperties.Name="Back"
    AutomationProperties.AutomationId="BackButton"
    AutomationProperties.ItemType="Navigation Button"/>
    <TextBlock x:Name="pageTitle" Text="Page name" Style="{StaticResource HeaderTextBlockStyle}" Grid.Column="1"
    IsHitTestVisible="false" TextWrapping="NoWrap" VerticalAlignment="Top"/>
    </Grid>
    </Hub.Header>
    <HubSection Width="800" Padding="40,50,0,0">
    <HubSection.Header>
    <StackPanel>
    <TextBlock Text="hub section 1" Style="{StaticResource HeaderTextBlockStyle}"/>
    </StackPanel>
    </HubSection.Header>
    <DataTemplate>
    <Grid>
    <StackPanel>
    <TextBlock Style="{StaticResource SubheaderTextBlockStyle}" Margin="0,0,0,5" TextWrapping="Wrap">
    <Run Text="Hello World"/>
    </TextBlock>
    </StackPanel>
    </Grid>
    </DataTemplate>
    </HubSection>
    </Hub>
    </Grid>
    </Page>
    MainPage.cs
    using HP.Common;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Media.Animation;
    using Windows.UI.Xaml.Navigation;
    // The Hub Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=321224
    namespace HP
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    this.Tapped += Page_OnTapped;
    private void Page_OnTapped(object sender, TappedRoutedEventArgs tappedRoutedEventArgs)
    if ( isAppBarShown )
    HideCustomAppBar();
    #region custom app bar
    private Storyboard hideCustomAppBarStoryboard;
    private Storyboard showCustomAppBarStoryboard;
    private Size appBarSize;
    private Size appBarButtonsSize;
    private bool isAppBarShown = true;
    private void CustomAppBarRoot_OnLoaded(object sender, RoutedEventArgs e)
    appBarSize = new Size(CustomAppBarRoot.ActualWidth, CustomAppBarRoot.ActualHeight);
    appBarButtonsSize = new Size(ButtonsStackPanel.ActualWidth, ButtonsStackPanel.ActualHeight);
    InitializeStoryboards();
    HideCustomAppBar();
    private void ShowCustomAppBar()
    isAppBarShown = true;
    showCustomAppBarStoryboard.Begin();
    private void HideCustomAppBar()
    isAppBarShown = false;
    hideCustomAppBarStoryboard.Begin();
    private void DotsTextBlock_OnTapped(object sender, TappedRoutedEventArgs e)
    if (isAppBarShown)
    HideCustomAppBar();
    else
    ShowCustomAppBar();
    private void InitializeStoryboards()
    hideCustomAppBarStoryboard = new Storyboard();
    showCustomAppBarStoryboard = new Storyboard();
    var showDoubleAnimation = new DoubleAnimation()
    EasingFunction = new CircleEase() {EasingMode = EasingMode.EaseInOut},
    To = 0,
    Duration = new Duration(TimeSpan.FromMilliseconds(200))
    var hideDoubleAnimation = new DoubleAnimation()
    EasingFunction = new CubicEase() {EasingMode = EasingMode.EaseInOut},
    To = appBarButtonsSize.Height,
    Duration = new Duration(TimeSpan.FromMilliseconds(200))
    hideCustomAppBarStoryboard.Children.Add(hideDoubleAnimation);
    showCustomAppBarStoryboard.Children.Add(showDoubleAnimation);
    Storyboard.SetTarget(hideCustomAppBarStoryboard, CustomAppBarRoot);
    Storyboard.SetTarget(showCustomAppBarStoryboard, CustomAppBarRoot);
    Storyboard.SetTargetProperty(showCustomAppBarStoryboard, "(UIElement.RenderTransform).(TranslateTransform.Y)");
    Storyboard.SetTargetProperty(hideCustomAppBarStoryboard, "(UIElement.RenderTransform).(TranslateTransform.Y)");
    #endregion
    private void CustomAppBarRoot_OnManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)
    var translateTransform = (CustomAppBarRoot.RenderTransform as TranslateTransform);
    double newY = e.Delta.Translation.Y + translateTransform.Y;
    translateTransform.Y = Math.Max(0, Math.Min(newY, appBarButtonsSize.Height));
    private void CustomAppBarRoot_OnManipulationCompleted(object sender, ManipulationCompletedRoutedEventArgs e)
    // if small appbar-position changes are made app bar should back to previous position, just like in windows phone
    if (Math.Abs(e.Cumulative.Translation.Y) < 20)
    isAppBarShown = !isAppBarShown;
    if (!isAppBarShown)
    ShowCustomAppBar();
    else
    HideCustomAppBar();
    private void CustomAppBarRoot_OnTapped(object sender, TappedRoutedEventArgs e)
    e.Handled = true; // prevents raising Page.Tapped event so appbar won't be closed on AppBar-area tap

    When I debug, the app runs as normal and doesn't crash when I tap the elipses hence nothing happens.
    Does your tapped handler get called?
    It looks like your buttons stack panel may be on top of your ellipses. Try reversing that so the ellipses are on top:
    <StackPanel Name="ButtonsStackPanel" Grid.Row="1" Orientation="Horizontal">
    <AppBarButton Label="tfg" Icon="Add"/>
    <AppBarButton Label="tfg" Icon="Add"/>
    </StackPanel>
    <TextBlock x:Name="DotsTextBlock" Text="&#xe10c;" FontSize="14" FontFamily="Segoe UI Symbol" HorizontalAlignment="Right" VerticalAlignment="Top"
    Tapped="DotsTextBlock_OnTapped">
    </TextBlock>
    You can also use the Segoe UI Symbol "More" character to match the standard more ellipses rather than trying to implement your own. A step further would be to make it a button so that it has proper clickable semantics and will work properly with the
    keyboard, although for this specific use you can get away without it since you'll provide standard Windows+Z AppBar behaviour.

  • After upgrading the new operating system, it seems some useful features no longer work such as when typing a message the text anticipates the next word and when trying to delete individual messages from a contact, you can no longer tap and hold to select

    After upgrading the new operating system on my Droid Razr M it seems some useful features no longer work such as when typing a message the text anticipates the next word and when trying to delete individual messages from a contact, you can no longer tap and hold to select multiple message you have to delete them individually or the entire thread. Is there a way to get these back?

    Well, that's kind of embarrassing. And I honestly thought I paid attention to that... It works perfectly now, thank you so much!
    As expected, cdm-git also works fine since DMs only work in the root mode as of now.
    Just for the record, both type commands output "/usr/bin/startx" and pacman -Q gives "systemd 215-4".
    Last edited by looki (2014-08-23 13:04:49)

  • HT1600 I have an Apple TV 2nd Gen, iPad 2 and can't get the icon to appear when i swipe from left to right. What am I missing? I am able to get the 'Home sharing' 'user and password on my Mac.

    I have an Apple TV 2nd Gen, iPad 2 and can't get the icon to appear when i swipe from left to right. What am I missing?
    I am able to get the 'Home sharing' 'user and password on my Mac.
    Also using IPad 2 I am able to get the ITunes to accept the user name and same password as the Mac.
    However, the only way I can see the 'Home sharing; icon is in Music on the Ipad. When I tap on the Icon it asks for a password.
    When I give the same password, it is rejected.
    Help!!!!
    Jaxxdiggs

    Personally I think the iOS devices are poor at reconnecting  - Airplay establishes that a link is available but when the iPhone/iPad has been away from the house and rejoins the network i think AppleTV already thinks it's connected with a different IP address and fails to recognise it has joined the network again with new credentials.
    Something along those lines anyway.
    I find that a combination of restarting AppleTV, router and iOS device tends to fix it, but not for everyone.
    AC

  • The following message appears when I try to turn on the iPad..."Not enough storage..this iPad cannot be backed up because there is not enough iCloud storage available. You can manage your storage in settings." When I tap Close or Settings nothing happens

    The following message appears when I try to turn on the iPad..."Not enough storage..this iPad cannot be backed up because there is not enough iCloud storage available. You can manage your storage in settings." When I tap Close or Settings nothing happens

    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • I am unable to work on docs in adobe as the toolbar does not appear when I tap on the doc.

    how do I get my adobe to work? I open the doc in adobe but cant work on the doc. the toolbar does not appear when I tap in the middle. All contact us help leads to nowhere. the e mails from support cant be replied to. is there another app that one couls use to download doc and actually be able to work on them?

    What is your operating system?
    What is your Reader version?
    Are these local or online documents?  If online, in what browser?

  • HT4623 what if i want to delete an app; i tap and hold the app until it jiggle, but  there's no "x" to delete.

    what if i want to delete an app; i tap and hold the app until it jiggle, but  there's no "x" to delete.

    If you're talking about deleting (as opposed to closing) an app, you do it just like on previous versions; hold until jiggle, press red X. If they're jiggling but you're not seeing the X, you may need to check your Restrictions. Some apps (Apple included) can't be deleted.
    = L.I.

  • I downloaded the iOS7 and I can't force quit the open apps. I was told, "Force-quitting apps is a little different though: Instead of tapping and holding on the icon, you flick a thumbnail up to dismiss it." Comments please & thank you

    I downloaded the iOS7 and I can't force quit the open apps. I was told, "Force-quitting apps is a little different though: Instead of tapping and holding on the icon, you flick a thumbnail up to dismiss it." Unfortunately, that didn't work. Any comments please & thank you

    Sorry if I didn't make myself clear. Prior to loading 1OS7 it was easy to force quit applications that were still open by double clicking and seeing an a red "x" you had to click on.
    It doesn't work that way with the new operating system and the instructions that were given "Force-quitting apps is a little different though: Instead of tapping and holding on the icon, you flick a thumbnail up to dismiss it."
    Do not work.
    I am looking for anyone who can help figure this out.

  • The utility's menu isn't coming up when I press and hold r and command after restarting

    I have a Macbook air and The utility's menu isn't coming up when I press and hold r and command after restarting. I'm trying to restore my mac to factory settings. I have version 10.10.2 OS X Yosemite.

    Then try:
    Install OS X Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer.

  • My ipad mini does not restart when i press and hold the home and power buttons for a minute or more. what do i do? i really need to access some information on it. please help.

    my ipad mini does not restart when i press and hold the home and power buttons for a minute or more. what do i do? i really need to access some information on it. please help.

    You need to connect to iTunes and restore.
    iOS: Not responding or does not turn on
    You may need to put the device into recovery mode, this is covered in the link on this page.
    Did you back up the device?

  • I put a disc in my Imac and it doesn't recognize it, and i can't eject it. I tried to restart it and hold the mouse button, but that didn't work.Please help.

    I put a disc in my Imac and it doesn't recognize it, and i can't eject it. I tried to restart it and hold the mouse button, but that didn't work.Please help.

    Try restarting your iMac by holding down the eject button on your keyboard.  http://support.apple.com/kb/TS2097

  • What can I do to fix it if when I tap on the icon of any app I download and it is not opening? Please be fast!!!

    When I click on the app, it close straight away, even if I download a free app it is still the same. I really need to fix it fast!!!

    TaMaTchI wrote:
    it stayed for a little bit longer then before but it ended up closing afterward
    Try this...
    Turn the Pod Off...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    Turn the iPod On.
    If, after this, you are still having issues then try the Steps in the above Link for Troubleshooting Apps...

  • How can I make the comments field appear when the operator is debugging a test?

    When a test is being written the comments field is being utilized for information relating to what the test is doing and how to solve certain problems that arise. It is basically a quick place for the technician to look at when they are attempting to debug a board. However it appears when you view the sequence files these are off to the right side of the screen but when running the debug engine and the technician sets a break point then these comments are no longer visible to the user off to the right of the screen. Is there any way to have it include the comment in the data displayed when tracing through a test step by step. The technician can double click on each step but it would be alot mor
    e user friendly and timly if these could be displayed just to the right of the execution flow column.

    Hello John,
    I assume you are talking about the sequence editor. Unfortunately, there is currently no way to view the comments associated with a step inside of the execution display window (i.e during run-time). If you are using the operator interface, then you may extract the comment associated with a step and post a custom UI message that contains this information. The operator interface can then be modified to respond to this UIMessage and update its display accordingly.
    To post a UIMessage with this data, you must first obtain a PropertyObject reference to the step you are trying to extract the comment from. Then use the "Comment" property of the PropertyObject class to obtain the comment value.
    Unfortunately, the Sequence Editor discards all custo
    m UIMessages, and you will have no way of viewing the comment using the above method.
    Hope this helps.

Maybe you are looking for