IPhone 5 recharging, shd I wait until the battery is empty?

Someone told me that the battery suffers if I do not wait until the battery is empty and stop recharging before the battery is full. Can I recharge the phone whenever I want and how long I want or do I have to wait until it is empty/full?

waiting until the battery is empty is a good idea but you have a limited amount of charge cycles but i recommend draining it fully
it doesnt suffer at all and it should have a 8-10 hour life of battery
yes you can charge whenever you want but you have a limited amount like 500
charge 4-8 hours

Similar Messages

  • Is it best to wait until the battery is almost dead to recharge?

    Should I charge my Ipod touch regularly or wait until the battery is very low?

    You can charge whenever you want, there's no harm.
    http://www.apple.com/batteries/ipods.html

  • Ipod freezing in the middle of songs, have to wait until the battery dies.

    Help me, my ipod freezes in the middle of songs and i have to wait until the battery goes out until i can do anything with it. And the harddrive has started to click and it sounds like a fan that starts spinning after two clicks. What should i do ?
    Pc   Windows XP   Ipod 5th generation

    you know what its funny because my ipod just did this last weekend. its been freezing on and off for the last couple of months. I have had it for a year and a half. It would freeze and i would try and do the whole thing where you hold down menu and select and that worked for awhile, but then suddenly last weekend it froze and it started making a weird clicking sound too. i got ****** and just left it at home for the weekend. when i got back home the battery was dead of course and i just plugged it into the charger and it turned on again. im guessing that sometimes you just have to leave it alone. when it made that clicking noise, it wouldnt do anything. you just have to let the battery die and then recharge it.

  • Do I have to wait until the battery is completely empty until recharging?

    Must the battery from my iPad 4 be completely empty before recharging ?

    No, it is quite fine to charge at any time, for any amount. The Lithium based battery used in iDevices do not like to be depleted to low levels.

  • ITouch has a black screen as if it's off but when plugged into the computer it says it's on. I have to wait until the battery dies to charge it and turn it back on.

    I've tried restarting it. When the battery finally dies and I get to turn it back on, it works for a while until it freezes, then I click the power button to put it on standby and then the screen won't turn back on but the computer says it's still on. However, the computer won't detect the device.

    When this happens hold the HOME and SLEEP button at the same time for about 10 seconds until an Apple logo appears. If that works we still need to find out why it is locking up.

  • Bluetooth connected phone call waits until the person answers to connect through speakers! How to change this.

    When placing a bluetooth call the car shows that the phone is connected but there is no ringing (it is still ringing in the phone speaker).  Then the person answers and it plays through the car speaker, but misses the first word.  What is happening?  I used to hear the phone ringing.  Now it waits until the person answers.

    This occurred when I updated the IOS to 8 and switched to an iphone 6 from a 5.
    I read both articles and did not find a solution to my dilemma.  To clarify further:
    When hooked up through bluetooth to my 2011 Honda Accord
    - incoming calls will ring the phone through the speakers and I can answer and speak through the speakers/car microphone by touching a switch on my steering wheel
    - outgoing calls that I initiate by touching the phone number on the phone will ring in the phone until the person picks up, it then switches to the car speakers (unfortunately, the hand-off results in missing a word or two that the answering person has said).  This did not work this way with my iphone 5 and ios 7.
    I hope this is better communicated and there is an answer.
    Thanks.

  • TS1702 My iPhone 4s didn't do it until the latest update so imnpretty sure it's on the apple server some sort of bug maybe? Not sure. But whatever it is I really would like to download apps. It won't let me download any apps and my phone is brand new

    My iPhone 4s didn't do it until the latest update so imnpretty sure it's on the apple server some sort of bug maybe? Not sure. But whatever it is I really would like to download apps. It won't let me download any apps and my phone is brand new.

    Sorry guysy iPhone says unable to download application at this time and I try all day and it still won't let me download no matter how hard I try.

  • I am trying to authorise my new macbook air and it won't let me. I try to de-authorise all the other computers and it says I can only do this once a year and have to wait until the 7th Feb. It does not give me an option to authorise this computer

    I am trying to authorise my new macbook air for i-tunes and it won't let me. I try to de-authorise all the other computers and it says I can only do this once a year and have to wait until the 7th Feb. It does not give me an option to authorise this computer

    Always remember to 'de-authorize' you computer when selling or sending for service. If sending for repairs you might not get the same mother board or HD back and some how this counts as an authorized computer against your count.
    MJ

  • Remote function module to wait untill the response came from webmethods

    hi all.
    here i have got a situation that the remote function module created in SAP-R/3 to wait untill the response came from webmethods :
    i have created the remote function module by assigning one structure in tables(tab) and 3 parameters in changing tab just to collect the messages return from webmethods
    so this rfc will be called by webmethods and pick the structure data and then it wll return 3 variables back to rfc.
    here the rfc need to wait untill the response came from webmethods.
    so can any body suggest me on what source code do i need to write in RFC

    Hi Naina,
    Normally RFC are synchronous, they do have return parameter as export parameter.
    If return parameter is missing then , you can create Wrapper RFC.
    Wrapper RFC:
    It is nothing but you just  create BAPI in SE37 transaction with Return parameter as export parameter and make it remote enabled by clicking on Radio button.
    Under source code, CALL BAPI which XI has to call.
    Thats it!
    I hope this helps.
    Let me know if any help required.

  • How to wait until the 1st part of the processing is done

    Hi,
    I had a hard time to combine two parts of processing in one .vi file, and thus would like to get some advice/help through the forum.
    Attached is the partial finished vi file I made. You can see that it is composed of two parts. The upper part is to run a bat file (check_result.bat), which generates a result.txt file. The lower part is to use the result.txt file as an input file, and check if the key word called "test case passed" is included in the result.txt file or not. So I want to run the upper part firstly, and then run the lower part after the upper part is finished.
    However, I don't know how to connect the two parts in a right way that the lower part only starts running after the upper part is finished. Any comments/help is highly appreciated.
    Thank you in advance.
    Xuedong 
    Attachments:
    question.vi ‏49 KB

    The magic of dataflow!
    All you need is a data dependency between the two parts. Often critical parts of each section contain error terminals, so you can just string em along in the proper order and each part must wait until the previous node has finished.
    In your particular case, the read operation has no error input, so you can recruit any other input. Create a fake data dependency by strategically placing a small sequence frame containing common code. The sequence cannot start until all code that provides imputs has finished, serving your purpose.
    Of course it seems silly to even try to read the file if the previous node failed. Right? So simply place the second part inside a case and hook it up to the error output. Now the second part (1) waits until the first part has finished AND (2) execute only of the first part succeeded. No sequence needed.
    All clear?  
    Message Edited by altenbach on 02-07-2007 02:34 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    dataflow.gif ‏4 KB
    dataflow2.gif ‏4 KB

  • Hi,  I would like to ask you a question. a month ago I bought a battery case for iPhone 5 and it worked properly until I installed iOS 7. From that day iphone is operating normally, but when the battery is empty, unfortunately I can not charge additionall

    Hi,
    I would like to ask you a question.
    a month ago I bought a battery case for iPhone 5 and it worked properly until I installed iOS 7. From that day my iphone is operating normally, BUT when the battery is empty, unfortunately I can not charge additionally my iphone with the "extra battery case".
    Does that mean that you did not even create a new software that supports additional battery case or it is something else?
    I need your help!!,
    Thank you in advance.
    Sincerely,
    VK

    The Mophie Air is a good battery case, but doesn't offer the protection she's looking for. I suggest sticking to the Lifeproof, the iPhone has a very good battery (2-3 days moderate usage for me).
    To your 2nd to last paragraph, that is false. Verizon is allowing exisiting customers to keep Unlimited Data - but will lose it once they use a subsidized upgrade. So if you buy a 4S (or LTE device for example) outright, you will keep unlimited data. Mobile hotspot may use up a bit of data, but it is a separate add-on/feature. The new Family Share plans may change that, so it's one giant center of data all devices use.

  • Should I just wait untill the Intel Mini's are out to make the switch over?

    I have been somewhat active on this board for the last month or so looking at the Apple Mini. I want a computer that never really slows down, or crashes a lot. Also, I want a computer that can do some light video editing, and some light gaming (think: Battlefield 1942!).. I'm thinking about waiting till the New Intel Mini's come out but I really don't know when that will be! I don't know if I can hold on for 8 more months with this crappy thing they call an OPERATING SYSTEM.
    Do you guys know when the Intel's are coming out? When they do, thats when I might make the switch from XP to mac OX.
    Thank you all!

    Though a bit belatedly, I thought it might be worth pointing out an issue that ought to cross the minds of those considering buying a mini but not sure whether to wait for the Intel models or not.
    Aside from the fact that no-one knows when the Intel minis will be announced and what specs (thus performance) they will have, and the fact that as soon as the first models are out, there will be a tendency to want to wait until the next revision for the 'rev.a' bugs to get ironed out and some speed bumps ironed in, one important extra consideration is the software that's intended to be run.
    All software at this time is G4 compatible, and many titles are either already in universal binary, or about to be so, thus would run natively on an Intel-mini. But some, Adobe CS and Microsoft Office (to name a couple of significant examples) are not universal yet, and while they likely will become so, it's not at all clear when. Until they ARE universal, those apps will run in emulation on an intel Mac, and performance is not reported to be stellar.
    So I'd suggest to anyone considering the issues, to look at the titles you want to run, and make sure all the important ones are Intel-native already, or going to become so very soon. If they are, then waiting for an Intel mini is perfectly reasonable as long as you don't have any immediate need and can wait however long it takes. But if any crucial apps are PPC only and likely to stay that way, I'd buy a G4-powered mini while they're still available, and trade it later when the crucial apps go Universal and the Intel models have settled down.

  • How to have DDL "wait" until the lock is free in 10g

    I saw this for 11g: http://www.scribd.com/doc/247954/Oracle-11g-DDL-Wait-Option-feature
    Moving to 11g is not an option. I have code that does partition maintenance (adds a new partition and drops an old one) at night. However, sql loader may be running and the table may be locked. This happened already. Is there anyway to get my code to wait until the lock is released?

    The is no DDL option on the partition operations that I know of to tell the DDL to wait if it cannot get a lock. You will have to implement a procedural fix such as updating a row with a value to indicate the sqlldr job is running or if the sqlldr task is controled via a external table take a user lock then execute the partition operations via stored code that checks the user lock first.
    HTH -- Mark D Powell --

  • Setup.exe does not wait until the installation is done

    Hi,
    I downloaded ODAC 10.2.0.2.21 from here:
    http://download.oracle.com/otn/other/ole-oo4o/ODAC1020221.exe
    And after extracting all files, I use this command on cmd:
    setup.exe -silent -noconsole -waitforcompletion -force -responsefile <Path>
    Furthermore, I have BOOTSTRAP=FALSE on oraparam.ini but setup.exe does not wait until the installation is done.
    I only want a way to wait for the installation to complete...
    Cheers,
    Joan

    DBMS Direct wrote:
    What's the main reason you want to do a silent install for ODAC?To launch it from a bigger installer of an application which uses ODAC.

  • Wait until the session has been processed

    Hi folks,
    I have a report in which I create and trigger an SM35 session. I use RSBDCSUB report to do the same.
    Now, is there anyway to wait until the session has been processed? I mean, I need to do a few things in the report only after the session has been processed.
    Thanks
    Sagar

    Hi,
    You could try checking the job status (table TBTCO) inside a DO or WHILE loop.  To pause up to 5 seconds between your lookup on TBTCO, you can call function module 'RZL_SLEEP'. 
    If checking TBTCO does not work out for you, you can try the same loop logic with a call to function module 'ENQUEUE_BDC_QID' instead of looking up the job status.  If the enqueue has been released then the job has finished.
    Regards,
    James G.

Maybe you are looking for

  • Jabber for Windows - periodically tries to re-install and fails

    Jabber 9.1 CUCM 7.1.3 Windows 7 32 bit Cisco Presence   8.0.2.10000-30 Jabber for windows - periodically tries to re-install and fails. After install Jabber works for awhile but then when trying to open another program(Outlook, IE Explorer) it tries

  • Static IP do not work on iPad 3G Personal Hotspot

    Hi! I have an iPad 3G 3rd generation with a 3G internet subscription and a static IP. I need the static IP on my Mac when I'm connecting it at the Personal Hotspot on the iPad. I need it to access particular services where the access is based on IP.

  • Unable to connect to the server.. Error Data : API_NOT_INITIALIZED on CUEAC Server Installation

    Hi all, I am trying to install CUEAC Attendant Server on Windows Server 2008 R2, tried several times. First, it got stuck on the Databahse Wizard. After three reinstalls, it still got stuck but somehow built the configure database named CFGATT and th

  • Device menu not showing on Iconia A500 tablet (with FB 4)

    I have an Acer Iconia A500 tablet and am building an app using Flash Builder 4.5 on Windows. The A500 doesn't have a physical button for the menu.  In my app, the virtual button for the menu does not appear, eventhough I have defined menu items, and

  • ADF Mobile: Network Error

    Hi, I am getting following error while running an app on Android Emulator. NETWORK_ERR: XMLHttpRequest Exception 101When this type of error come ? Regards, Ajay Sharma