Can I access icloud with more than one Apple ID account on an ipod touch?

I just bought a new ipod touch and would like to know if I can download past purchases from my fiances Apple ID account using icloud on the ipod touch we are going to share because I am having a problem with being unable to authorize the one macbook computer that we share with both of our accounts. As a solution I was thinking about logging into his account on icloud on our ipod touch and downloading his purchased apps. Will this work?? Thank you so much for reading this I appreciate all and any responses you may leave me.

You can do that, but if you switch back to the other account, you'll lose everything bought from the first account. We're talking about an iTunes account. You do not want to share the same iCloud account otherwise you both get the same emails, contacts, messages, calendars, etc if you turn those services on for iCloud.

Similar Messages

  • Can you sign in with more than one apple id on an iPad?

    Can you sign in with more than one apple id on an iPad?

    Only one account can be signed in at a time (via Settings > Store), and if you turn on automatic downloads and/or download past purchases from an account then you risk tying the iPad to that account for 90 days : http://support.apple.com/kb/HT4627

  • Can you face time with more than one person at one time?

    Can you face time with more than one person at one time?

    You mean like a conference call?  No, unfortunately.

  • Why is all my icloud account linked with more than one apple id?

    why is my iphone 5 merged with more than one account?

    What do you mean by "merged with more than one account" and "linked with more than one Apple ID"?  What exactly are you seeing on your phone?

  • Can a user facetime with more than one user at a time

    I can use facetime with Macbook and connect to another Macbook user on another WIFI network... I was wondering if one can facetime with more than one user at a time?

    ellis911 wrote:
    I can use facetime with Macbook and connect to another Macbook user on another WIFI network... I was wondering if one can facetime with more than one user at a time?
    Only if you have more than one device running FaceTime at your end.
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.2.1

  • Can't access ejb with more than 1 person at the same time?

    I am using the ejb to access the database using DBConnection Pool that I find in book. The code is as follow:
    The problem is when more than one user access almost at the same time, the one who enter frst can access, but the other one can't and return context lookup error in creating EJB.
    What's the problem of it, is it the ejb concurrent access problem or database concurrent access problem?
    package login.database;
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import java.util.Date;
    public class DBConnectionManager {
    static private DBConnectionManager instance;
    static private int clients;
    private Vector drivers = new Vector();
    private PrintWriter log;
    private Hashtable pools = new Hashtable();
    static synchronized public DBConnectionManager getInstance() {
    if (instance == null) {
    instance = new DBConnectionManager();
    clients++;
    return instance;
    private DBConnectionManager() {
    init();
    public void freeConnection(String name, Connection con) {
    DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null){
    pool.freeConnection(con);
    public Connection getConnection(String name) {
    DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null) {
    return pool.getConnection();
    return null;
    public Connection getConnection(String name, long time) {
    DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null) {
    return pool.getConnection(time);
    return null;
    public synchronized void release() {
    if (--clients != 0) {
    return;
    Enumeration allPools = pools.elements();
    while (allPools.hasMoreElements()) {
    DBConnectionPool pool = (DBConnectionPool) allPools.nextElement();
    pool.release();
    Enumeration allDrivers = drivers.elements();
    while (allDrivers.hasMoreElements()) {
    Driver driver = (Driver) allDrivers.nextElement();
    try {
    DriverManager.deregisterDriver(driver);
    log("Deregistered JDBC driver " + driver.getClass().getName());
    } catch (SQLException e) {
    log(e, "Can't deregister JDBC driver: " + driver.getClass().getName());
    private void createPools(Properties props) {
    Enumeration propNames = props.propertyNames();
    while (propNames.hasMoreElements()) {
    String name = (String) propNames.nextElement();
    if (name.endsWith(".url")) {
    String poolName = name.substring(0, name.lastIndexOf("."));
    String url = props.getProperty(poolName + ".url");
    if (url == null) {
    log("No URL specified for " + poolName);
    continue;
    String user = props.getProperty(poolName + ".user");
    String password = props.getProperty(poolName + ".password");
    String maxconn = props.getProperty(poolName + ".maxconn", "0");
    int max;
    try {
    max = Integer.valueOf(maxconn).intValue();
    } catch (NumberFormatException e) {
    log("Invalid maxconn value " + maxconn + "for " + poolName);
    max = 0;
    DBConnectionPool pool = new DBConnectionPool(poolName, url, user, password, max);
    pools.put(poolName, pool);
    log("Initialized pool " + poolName);
    private void init(){
    InputStream is = getClass().getResourceAsStream("db.properties");
    Properties dbProps = new Properties();
    try {
    dbProps.load(is);
    } catch (Exception e) {
    System.err.println("Can't read the properties file. " +
    "Make sure db.properties is in the CLASSPATH");
    return;
    String logFile = dbProps.getProperty("logfile","DBConnectionManager.log");
    try {
    log = new PrintWriter(new FileWriter(logFile, true), true);
    } catch (IOException e) {
    System.err.println("Can't open the log file: " + logFile);
    log = new PrintWriter(System.err);
    loadDrivers(dbProps);
    createPools(dbProps);
    private void loadDrivers(Properties props) {
    String driverClasses = props.getProperty("drivers");
    StringTokenizer st = new StringTokenizer(driverClasses);
    while (st.hasMoreElements()) {
    String driverClassName = st.nextToken().trim();
    try {
    Driver driver = (Driver) Class.forName(driverClassName).newInstance();
    DriverManager.registerDriver(driver);
    drivers.addElement(driver);
    log("Registered JDBC driver " + driverClassName);
    } catch (Exception e) {
    log("Can't register JDBC driver: " + driverClassName + ", Exception: " + e);
    private void log(String msg) {
    log.println(new Date() + ": " + msg);
    private void log(Throwable e, String msg) {
    log.println(new Date() + ": " + msg);
    e.printStackTrace(log);
    class DBConnectionPool {
    private int checkedOut;
    private Vector freeConnections = new Vector();
    private int maxConn;
    private String name;
    private String password;
    private String URL;
    private String user;
    public DBConnectionPool(String name, String URL, String user, String password, int maxConn) {
    this.name = name;
    this.URL = URL;
    this.user = user;
    this.password = password;
    this.maxConn = maxConn;
    public synchronized void freeConnection(Connection con) {
    freeConnections.addElement(con);
    checkedOut--;
    notifyAll();
    public synchronized Connection getConnection() {
    Connection con = null;
    if (freeConnections.size() > 0) {
    con = (Connection) freeConnections.firstElement();
    freeConnections.removeElementAt(0);
    try {
    if (con.isClosed()) {
    log("Removed bad connection from " + name);
    con = getConnection();
    } catch (SQLException e) {
    log("Removed bad connection from " + name);
    con = getConnection();
    else if (maxConn == 0 || checkedOut < maxConn) {
    con = newConnection();
    if (con != null) {
    checkedOut++;
    return con;
    public synchronized Connection getConnection(long timeout) {
    long startTime = new Date().getTime();
    Connection con;
    while ((con = getConnection()) == null) {
    try {
    wait(timeout);
    } catch (InterruptedException e) {}
    if ((new Date().getTime() - startTime) >= timeout) {
    return null;
    return con;
    public synchronized void release() {
    Enumeration allConnections = freeConnections.elements();
    while (allConnections.hasMoreElements()) {
    Connection con = (Connection) allConnections.nextElement();
    try {
    con.close();
    log("Closed connection for pool " + name);
    } catch (SQLException e) {
    log(e, "Can't close connection for pool " + name);
    freeConnections.removeAllElements();
    private Connection newConnection() {
    Connection con = null;
    try {
    if (user == null) {
    con = DriverManager.getConnection(URL);
    else {
    con = DriverManager.getConnection(URL, user, password);
    log("Created a new connection in pool " + name);
    } catch (SQLException e) {
    log(e, "Can't create a new connection for " + URL);
    return null;
    return con;

    Hi,
    static synchronized public DBConnectionManager getInstance() {
    The word "synchronized" will allow only one user at a time to access the getInstance() method which returns DBConnectionManager. Suggest u read some stuff on the same
    As I am not sure which App server ur using, u cld do the following
    1. Create a Conection Pool in ur App Server itself (Weblogic/Websphere/Jboss way)
    2. Create a DataSource which maps to this Connection Pool.
    3. Use the DataSource object which handles poolong of Connections to access the database
    4. As mentioned above, Read notes/documents on "Synchronized" and "Vector" before you use this word in any code of EJB. This will solve ur problem. Read topic called "Collection Framework".
    Seetesh

  • HT4528 I have an Iphone 4 CDMA. Can you pair it with more than one vehicle through HFL? I have Hondas. Also my new CRV receives texts through the Nav. It says this phone is non-compatible. Is there some software that needs downloaded?

    Can you pair through bluetooth my phone to more than one vehicle? My new Honda CRV receives text messages. However it says my Iphone 4 CDMA is not compatible. Is there software I need to download to my phone?

    If it works anything like Ford Sync, you can pair the same phone to different vehicles, as long as you set up separate Bluetooth profiles on the iPhone for each vehicle.
    As far as Texts go, you won't be able to get them in your vehicle because the iPhone doesn't have the software protocols to do it.  FWIW, I can't get texting from my iPhone 4S in my new Lincoln with Ford Sync either.

  • Can you sync Ipad with more than one computer?

    I am just curious, can I associate my Ipad with more than 1 computer.  I have a desktop and a laptop both with itunes and same library.  Can I sync the Ipad on both computers without it totally erasing the Ipad or should I only sync it on one computer?
    Than kyou in advance for the help.

    In theory - If the libraries are identical, yes it should work. Keeping the libraries identical might become a little challenging. You may want to make sure that you always manually transfer purchases whenever you sync to each computer to make sure that all content is always being transferred into each iTunes library and I would think that you would want to backup each time you sync as well. And you might want to sync with the one computer right after you sync with the other computer so that all of your data remains intact in the backups of both computers.
    You can always check by giving it a try and see of you get the "this iPad have been synced to a different computer" message and see what happens. If the message pops up, just cancel and don't sync.
    However, I wouldn't recommend doing this unless you absolutely have to for some reason.

  • Can I use Pages with more than one user?

    Hi,
    I recently purchased Pages and want to be able to use it with two different users (one personal, one business). Is this possible? If so, how? I have no problem using it with the user I purchased it with, but my business user does not the option for Pages in the launchpad. How can I use Pages across users?
    Thank you,
    Britta

    Pages should be installed in the Applications folder at the top level of your hard drive to be available to all users of that Mac. By default, if you are logged in as an administrator, applications are installed in this folder. I haven't done it, but I understand that if you are not an administrator, applications are installed only in that user's applications folder.
    My installation of iWork is from the retail disc from more than three years ago but I did check for an app purchased from the Mac App Store in another user account on my Mac & had no problems finding it or launching it from Launchpad. Launchpad can be very cluttered &, unless you take the time to organize it, it can be very difficult to find a particular application. I would suggest trying to launch Pages from a Finder window or with a Spotlight search. And keep the Pages icon in the Dock for easy access the next time.

  • Can iTunes be authorized for more than one apple id

    My wife and I share a mac and each have our own iPhones.  she sometimes downloads songs with her apple id, and I do the same with mine.  is it possible to share these between our devices?  can I authorize my mac for both accounts?

    You should be able to have more than account authorised on your Mac's iTunes via the Store > Authorise This Computer menu option - and you should be able to select and sync purchases from both accounts to your phones

  • Am I able to to wifi sync with more than one Apple ID?

    I just updated my iPhone 3GS and my wife's iPhone 4 to the new iOS5 and tried to connect both to iTunes using different accounts and received this pop-up:
    "This computer is already associated with an Apple ID.
    You can auto-download purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 90 days."
    Is there any way around this issue?  I don't want to use the same Apple ID for both phones because I don't want stuff that she downloads to her phone to sync with my phone via iCloud.
    Thanks
    Chris

    You can do that, but if you switch back to the other account, you'll lose everything bought from the first account. We're talking about an iTunes account. You do not want to share the same iCloud account otherwise you both get the same emails, contacts, messages, calendars, etc if you turn those services on for iCloud.

  • Help with more than one apple id on same computer

    When my husband tries to do anything in his itunes library he gets the following error message,
    "This computer is already associated with an apple id  You can download past purchases on this computer with just one apple id every 90 days.  This computer can be used with a different Apple id in 11 days"
    I HAS been approx 3 months (90 days) since we purchased a new computer-but we have always had different itunes libraries.  HELP!!

    Only one account can be signed in at a time (via Settings > Store), and if you turn on automatic downloads and/or download past purchases from an account then you risk tying the iPad to that account for 90 days : http://support.apple.com/kb/HT4627

  • Can you video-chat with more than one friend at a time in new Hello?

    Simply wondering if a group of people can video-chat together at same time, or just one-on-one?

    It is currently only possible to have a peer to peer connection with one other computer.
    To connect with multiple computer you would have to connect via a dedicated server and that is currently not possible with WebRTC.

  • Can not access control center-more than one way to turn off and on portait rotate?

    The very bottom of my screen does not register touch for some unknown reason ( I have a 4s and iOS 7.1)—however I've been dealing with that by rotating my phone to pull up the keyboard to type for text messages, etc. I accidently locked my ability to rotate my phone and now I can't pull up the control center to turn it off. Is there another way to access this function?

    Thank you for the quick response. Unfortunately, in the AssistiveTouch there is still no way to turn off the locked position of my screen, so when I click the different rotate options provided, the screen does not change orientation... any thoughts?

  • Can itunes sync with more than one  apple tv

    I have two apple tv in the house. can i sync both to my itunes account. right now only one is sync.. other is streaming.. would rather have both sync. would like to do this as the one in the bedroom i want to play songs with but do not want to have my computer on all the time.. kids around to much ect.
    thanks

    yes you connect both appletv's to your itunes library and sync to both of them (that is how my 2 are currently configured).

Maybe you are looking for