How do I change the name on a second hand iPad in iTunes

I bought a used iPad 2 and on my iTunes it has the original owners name. I would like to grange it to mine.

If you mean the name that appears under Devices in iTunes:
Click on the name field in the sidebar then press RETURN to activate it. Change to the name you prefer, then press RETURN again.

Similar Messages

  • How do I change the name of a podcast once submitted to itunes??

    how do I change the name of a podcast once submitted to itunes??
    anyone know? I submitted my first podcast, then changed the name in feedburner. The new name is appearing once you are in the podcast window of my itunes, but not in the itunes store catalog. how do I fix?

    Here's what iTunes Podcaster help says:
    http://www.apple.com/itunes/store/podcaststechspecs.html
    Troubleshooting Your Feed
    iTunes should update your listing at least once every 24 hours. If you made changes more than 24 hours ago that are not yet reflected in your iTunes listing, there is a good chance that your feed has broken. When iTunes encounters a broken feed, it ignores the feed and continues to display the old data.
    Here is a set of recommended steps to fix your feed:
    Ping your feed to make sure iTunes has attempted to update your feed recently.
    Review the technical spec, particularly the example feed, to ensure that every detail of your podcast’s feed is supported by iTunes.
    Use a feed validation service like www.feedvalidator.org to check for particular problems. This may be helpful in determining a specific problem with syntax.
    If you used a software- or online-based feed creation service, check to ensure your settings there are correct and iTunes-compliant.
    Subscribe to the feed in iTunes to see if it works. Open iTunes, go to the Advanced menu, choose "Subscribe to podcast..." and enter your feed’s URL.
    Hope this helps - Podcaster's discussion board might have more answers:
    http://discussions.apple.com/forum.jspa?forumID=1107

  • How do i change the name of my ipod without going on itunes?

    How do i change the name of my ipod without having to go on itunes and change it. i dont have a computer so i cant change it throught my itunes.

    Without a computer to run iTunes, you are basically hosed when it comes to doing anything with your iPod.
    Allan

  • How can I change the name currently assigned to my IPhone in ITunes?

    My device name for my IPhone 4 in ITunes on my PC OS7 system is my husband name and not my own name. How do I change it>

    On the device, Settings > General > About > Name and edit it, or click on the name when connected to iTunes.
    tt2

  • How do i change the name of my ipad?

    how do i change the name on my ipad

    Connect your iPad to your computer with the sync cable and start iTunes if it doesn't automatically start. In the left column of iTunes you'll see your iPad's name. If your iPad is syncing, wait for it to complete or cancel the sync. Once the sync is complete, double-click on your iPad's name and the name will become editable. (The device name cannot be changed while a sync is in progress.)

  • How can I change the names of catagories that have been added to my music library?  Is it possible to change names or artists or gendre and how to do it?

    How do I change the names of artists or gendre in the itunes list after importing an album?  Is it posssible to change that information?

    Yes. Select one or more tracks (use ctrl or shift clicks to add/remove or extend a selection) then right-click or press CTRL-I to Get Info. Use the different tabs of the dialog to make changes.
    For general advice on getting things neat & tidy see my article on Grouping tracks into albums.
    tt2

  • How can I change the name of item in TableViewController iOS

    How can I change the name of item in TableViewController? I want to be able to change the title of an item if I added one. Code:
    //  ViewController.m
    //  Movie List
    //  Created by Damian on 20/02/15.
    //  Copyright (c) 2015 Tika Software. All rights reserved.
    #import "ViewController.h"
    @interface ViewController ()
    These outlets to the buttons use a `strong` reference instead of `weak` because we want
    to keep the buttons around even if they're not inside a view.
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *editButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *cancelButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *deleteButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *addButton;
    // A simple array of strings for the data model.
    @property (nonatomic, strong) NSMutableArray *dataArray;
    @end
    #pragma mark -
    @implementation ViewController
    - (void)viewDidLoad
        [super viewDidLoad];
         This option is also selected in the storyboard. Usually it is better to configure a table view in a xib/storyboard, but we're redundantly configuring this in code to demonstrate how to do that.
        self.tableView.allowsMultipleSelectionDuringEditing = YES;
        // populate the data array with some example objects
        self.dataArray = [NSMutableArray new];
        NSString *itemFormatString = NSLocalizedString(@"Movie %d", @"Format string for item");
        for (unsigned int itemNumber = 1; itemNumber <= 0; itemNumber++)
            NSString *itemName = [NSString stringWithFormat:itemFormatString, itemNumber];
            [self.dataArray addObject:itemName];
        // make our view consistent
        [self updateButtonsToMatchTableState];
    #pragma mark - UITableViewDelegate
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        return self.dataArray.count;
    - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
        // Update the delete button's title based on how many items are selected.
        [self updateDeleteButtonTitle];
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        // Update the delete button's title based on how many items are selected.
        [self updateButtonsToMatchTableState];
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        // Configure a cell to show the corresponding string from the array.
        static NSString *kCellID = @"cellID";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellID];
        cell.textLabel.text = [self.dataArray objectAtIndex:indexPath.row];
        return cell;
    #pragma mark - Action methods
    - (IBAction)editAction:(id)sender
        [self.tableView setEditing:YES animated:YES];
        [self updateButtonsToMatchTableState];
    - (IBAction)cancelAction:(id)sender
        [self.tableView setEditing:NO animated:YES];
        [self updateButtonsToMatchTableState];
    - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
        // The user tapped one of the OK/Cancel buttons.
        if (buttonIndex == 0)
            // Delete what the user selected.
            NSArray *selectedRows = [self.tableView indexPathsForSelectedRows];
            BOOL deleteSpecificRows = selectedRows.count > 0;
            if (deleteSpecificRows)
                // Build an NSIndexSet of all the objects to delete, so they can all be removed at once.
                NSMutableIndexSet *indicesOfItemsToDelete = [NSMutableIndexSet new];
                for (NSIndexPath *selectionIndex in selectedRows)
                    [indicesOfItemsToDelete addIndex:selectionIndex.row];
                // Delete the objects from our data model.
                [self.dataArray removeObjectsAtIndexes:indicesOfItemsToDelete];
                // Tell the tableView that we deleted the objects
                [self.tableView deleteRowsAtIndexPaths:selectedRows withRowAnimation:UITableViewRowAnimationAutomatic];
            else
                // Delete everything, delete the objects from our data model.
                [self.dataArray removeAllObjects];
                // Tell the tableView that we deleted the objects.
                // Because we are deleting all the rows, just reload the current table section
                [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationAutomatic];
            // Exit editing mode after the deletion.
            [self.tableView setEditing:NO animated:YES];
            [self updateButtonsToMatchTableState];
    - (IBAction)deleteAction:(id)sender
        // Open a dialog with just an OK button.
        NSString *actionTitle;
        if (([[self.tableView indexPathsForSelectedRows] count] == 1)) {
            actionTitle = NSLocalizedString(@"Are you sure you want to remove this movie?", @"");
        else
            actionTitle = NSLocalizedString(@"Are you sure you want to remove these movies?", @"");
        NSString *cancelTitle = NSLocalizedString(@"Cancel", @"Cancel title for item removal action");
        NSString *okTitle = NSLocalizedString(@"OK", @"OK title for item removal action");
        UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:actionTitle
                                                                 delegate:self
                                                        cancelButtonTitle:cancelTitle
                                                   destructiveButtonTitle:okTitle
                                                        otherButtonTitles:nil];
        actionSheet.actionSheetStyle = UIActionSheetStyleDefault;
        // Show from our table view (pops up in the middle of the table).
        [actionSheet showInView:self.view];
    - (IBAction)addAction:(id)sender
        [self.dataArray addObject:@"New Movie"];
        // Tell the tableView about the item that was added.
        NSIndexPath *indexPathOfNewItem = [NSIndexPath indexPathForRowself.dataArray.count - 1) inSection:0];
        [self.tableView insertRowsAtIndexPaths:@[indexPathOfNewItem]
                              withRowAnimation:UITableViewRowAnimationAutomatic];
        // Tell the tableView we have finished adding or removing items.
        [self.tableView endUpdates];
        // Scroll the tableView so the new item is visible
        [self.tableView scrollToRowAtIndexPath:indexPathOfNewItem
                              atScrollPosition:UITableViewScrollPositionBottom
                                      animated:YES];
        // Update the buttons if we need to.
        [self updateButtonsToMatchTableState];
    #pragma mark - Updating button state
    - (void)updateButtonsToMatchTableState
        if (self.tableView.editing)
            // Show the option to cancel the edit.
            self.navigationItem.rightBarButtonItem = self.cancelButton;
            [self updateDeleteButtonTitle];
            // Show the delete button.
            self.navigationItem.leftBarButtonItem = self.deleteButton;
        else
            // Not in editing mode.
            self.navigationItem.leftBarButtonItem = self.addButton;
            // Show the edit button, but disable the edit button if there's nothing to edit.
            if (self.dataArray.count > 0)
                self.editButton.enabled = YES;
            else
                self.editButton.enabled = NO;
            self.navigationItem.rightBarButtonItem = self.editButton;
    - (void)updateDeleteButtonTitle
        // Update the delete button's title, based on how many items are selected
        NSArray *selectedRows = [self.tableView indexPathsForSelectedRows];
        BOOL allItemsAreSelected = selectedRows.count == self.dataArray.count;
        BOOL noItemsAreSelected = selectedRows.count == 0;
        if (allItemsAreSelected || noItemsAreSelected)
            self.deleteButton.title = NSLocalizedString(@"Delete All", @"");
        else
            NSString *titleFormatString =
            NSLocalizedString(@"Delete (%d)", @"Title for delete button with placeholder for number");
            self.deleteButton.title = [NSString stringWithFormat:titleFormatString, selectedRows.count];
    @end

    Hey JB001,
    Sounds like you have more going on than just a simple issue with Home Sharing and more dealing with Wi-Fi syncing. Start with the article below and see if that may resolve it.
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi syncing
    http://support.apple.com/kb/TS4062
    If it does not work out, then may I suggest contacting Apple for further assistance to walk you through it or just take that time that you were talking about to sort it out.
    Contact Apple Support
    https://getsupport.apple.com/GetproductgroupList.action
    Regards,
    -Norm G.

  • Same question for the "2 iPhones in one account".....How do I change the name.  My iPhone is showing my wife's iPhone name when I am syncing it.  Why is that?  I know about using one iTunes account....But how do you change the name w/o erasing your data?

    Hi....How do you change the name?  When I sync my iPhone, it shows my wife's name on it?

    Unfortunately it is not doing it....
    Let me give more details..We have 3 iPods and 2 iPhone4....I recently purchased the iPhone4 and when we connected it..It was already reading my wife's iPhone4..We went to the Apple Store at the Grove today and was told to de-authorize the system and connect my iPhone4 back and I should be able to change the name.
    Nothing happened..Right now, I clicked on RESTORE settings...and it is uploading a new iPhone update. 

  • How do i change the name associated with my icloud

    how do i change the name associated with my icloud

    If you are trying to change the iCloud ID to another ID, go to System Preferences>iCloud, sign out, then sign back in with the ID you want to use.
    If you are trying to change the name of your existing iCloud ID and not trying to change to a different ID, you can change the name of the ID as explained here: http://support.apple.com/kb/HT5621.  After doing so, you'll need to sign out of the exising ID, then sign back in using the changed ID.

  • How can I change the name of a Materialized View?

    How can I change the name of a Materialized View?

    Oracle permitted renaming the snapshot in the earlier versions of 8i. However, it does not permit renaming the materialized view in 9i or 10g.
    SQL> rename mymatview to mymatview2;
    rename mymatview to mymatview2
    ERROR at line 1:
    ORA-32318: cannot rename a materialized view
    SQL> disconnect
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining options
    SQL> rename mymatview to mymatview2;
    rename mymatview to mymatview2
    ERROR at line 1:
    ORA-32318: cannot rename a materialized view
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.3.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.3.0 - Production

  • How do I change the name next to the home icon in Snow Leopard

    How do I change the name next to the home icon in Snow Leopard?

    Open the Accounts pane of System Preferences, unlock it, control-click your account, choose Advanced Options, and change its name there.
    (79496)

  • HT2513 How do you change the name of a reminder in the reminder list.  I right click and then choose "get information"  I can change the colour of the reminder but when I type in the name that I want and then press enter the name stays as "untitled".

    How do you change the name of a reminder in the reminder list.  I right click and then choose "get information"  I can change the colour of the reminder but when I type in the name that I want and then press enter the name stays as "untitled"

    Jerry,
    Thanks for replying again. I've got a little bit further thanks to you. I tried the US keyboard layout as you seemed pretty definte that it should work. This time I applied the setting and also started the language toolbar and selected it from there.
    Hey presto, I've got the @ where it should be. Excellent.
    However the single quote ' works in a weird way. When I press it, it doesn't show up on the screen. But when I press another key, I get the single quote plus the next key I press. When I press the single quote twice, I get 2 of them. This is also the same with the SHIFT ' key. i.e. for the double quotes.
    Very strange. I'll look at other keyboards and see where that gets me.
    Thanks,  Maz

  • How do I change the name of my macbook pro?

    How do I change the name of my macbook pro.  My full name is listed on it and I want to change that.  In the upper right hand corner it is correct but all that lists is my login name.

    Mr. Pat, there are some people who still try to do that, but you are risking losing all your music, photos, email, etc. It is not for the faint of heart.  This page, albeit published in 2003 by Dr. Smoke, is still pretty valid, IMHO:
    http://thexlab.com/faqs/renamehomerecovery.html
    Here's the opening copy:
    Recover from renaming your Home folder
    It is a grave mistake to rename your Home folder -- changing its file name from johnsmith toJohn, for example -- in an attempt to change the short name for your account when using Mac® OS X.
    Here's a newer, last scary article from the Apple Knowledge Base:
    http://support.apple.com/kb/HT1428viewlocale=en_US&locale=en_US

  • How do I change the name of a smart playlist in iTunes?

    How do I change the name of a smart plylist in Itunes please?

    Simply double click on the playlist name.
    Really easy
    Let me know

  • How do i change the name of my phone in i tunes - inherited from my husband

    I've inherited my husband's old phone and am on a sim only contract -I have set upmy apple id but when i synch tunes it shows the phone as my husbands ( albeit my number ) - how do i change the name of the phone ? - thanks

    In iTunes, just click on the name on the sidebar or in the info panel and edit it.  Or, on the iPhone itself,
    Settings -> General -> About -> Name

Maybe you are looking for

  • VGA or DVI?

    Hello, I just wanted to ask people's opinions. I have a black MacBook, should I get the DVI or VGA connector for my external monitor? Please give your ideas and opinions. Thanks a lot. Alex

  • Adobe Illustrator font menu help

         ok so i open my adobe illustrator today and i make a new file and went to put some text in and i notice that my font drop down menu is blank. so i click on it to get it to drop down and select a font, but its blank. there are no fonts in the men

  • Problem invoking filter

    Hi, I have an existing application with java 1.3 specifications. I have servlets and JSPs in the appication where I am using requestdispatcher to forward control to JSPs. I want to invoke a filter everytime the servlet forward the control to any JSP

  • IBook G4 black screen at startup with code in upper left hand corner

    I have had operating system issues for the past year, and recently had my OS reinstalled at a Mac Professional retailer. After two weeks of perfect performance, the chime stopped working on startup. This was the only problem for several days. Then wh

  • Problems trying to animate ball with Timer

    I trying to animate my ball. I just want it to move up but am having problems when trying to compile. I am getting 3 errorsin fact: C:\prog1\project_game\GameScreen2.java:24: illegal start of expression      public void paintComponent(Graphics graphi