IOS 5 needs a bug fix stat

I updated my iPhone 4 to iOS 5 immediately the battery went bananas. I was excited about Siri and a better camera so I purchased the iPhone 4S, but I have to say I am dissapointed, I am seriously considering going back to iOS 4. When can we expect a bug fix for iOS 5??????
Is anyone else having problems with Siri unable to connect to the network, Siri can connect to the network maybe 2 times at most per day, most of the time she is unable to connect what is the deal?
And last but not least, my iPhone 4S overheats to the point where I am scared, it gets burning hot and its not in use. I find myself using my phone less and less... I am beginning to question what kind of quality control was done on the 4S before it was rolled out. not happy at all

Thanks I have searched the battery threads and have done all of those things so far. I just tried the home button and sleep/wake button reset. I will see if that helps. I am also going to do a complete down to 0 battery drain and recharge tonight and tomorrow if not I will go to the Apple Store.
Thanks for your help

Similar Messages

  • HT204210 Still nothing about File Vault that needs a bug fix for almost every user. This is becoming even more disappointing!

    Still nothing about File Vault that needs a bug fix for almost every user. This is becoming even more disappointing!

    Apple Enterprise Support is aware of this issue. They have specific instructions which attempt to remediate the issue, however, attempting on two different MBP laptops, so far has not succeeded.
    The problem to be specific is - hang at login. The Filevaulted user account gets its password entered, then the "progress bar" mid screen will be seen to halt, never resuming. NVRAM resets dont necessarily cure this issue, but turning off FV2 definitely does.
    We are seeing this with 10.10.2 fully Apple-SUS updated machines.
    Feedback has been sent to Apple over this as well.
    Im recommending:
    a. turn off FV2 until such time as a Apple provided update cures it
    b. consider the Sophos WDE solution if WDE is absolutely required (disclosure: I havent attempted this, not sure about its workability)

  • Need help on fixing this bug

    Hello!
    I have my cod which needs some bug fixing. This is a drag and drop application where the user will drap the correct answer on corresponding targets. My problem here is, when one target is already occupied by an object i can still drop another object there, which shouldn't. can you please help me fix this?
    thanks in advance!
    Sincerely.
    Milo
    Here's my code:
    var startX: Number;
    var startY: Number;
    var correct: Number = 0;
    var attempt: Number = 0;
    var currentlyDragged:MovieClip;
    // collection of objects stored in array
    // so that you can reference them programmatically
    var objects:Array = [at1, in1, in2, in3, in4, in5, in6, in7, in8, on1, on2];
    activateObjects();
    // assigns listeners and other functionality to the objects in objects array
    function activateObjects():void {
         for each(var mc:MovieClip in objects) {
              mc.addEventListener(MouseEvent.MOUSE_DOWN, pickObject);
              mc.buttonMode = true;
              // assign drop targets based on names
              switch(String(mc.name).substring(0, 2)) {
                   case "at":
                        mc.dropTargets = [targetAT1];
                   break;
                   case "in":
                        mc.dropTargets = [targetIN1, targetIN2, targetIN3, targetIN4, targetIN5, targetIN6, targetIN7, targetIN8];
                   break;
                   case "on":
                        mc.dropTargets = [targetON1, targetON2];
                   break;
    function pickObject(e:MouseEvent):void {
         currentlyDragged = MovieClip(e.currentTarget);
         currentlyDragged.startDrag();
         startX = currentlyDragged.x;
         startY = currentlyDragged.y;
         stage.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    function dropObject(e:MouseEvent):void {
         stage.removeEventListener(MouseEvent.MOUSE_UP, dropObject);
         stopDrag();
         var droppedOn:MovieClip;
         if (currentlyDragged.dropTarget) {
              // loop through targets belonging to the currently dragged clip
              for each(var mc:MovieClip in currentlyDragged.dropTargets) {
                   if (currentlyDragged.hitTestObject(mc)) {
                        // get the target
                        droppedOn = mc;
                        currentlyDragged.removeEventListener(MouseEvent.MOUSE_DOWN, pickObject);
                        currentlyDragged.buttonMode = false;
                        currentlyDragged.x = droppedOn.x;
                        currentlyDragged.y = droppedOn.y;
                        correct++;
                        correctCounter.text = String(correct);
                        // stop loop - it is not necessary to continue
                        break;
         attempt++;
         attemptCounter.text = String(attempt);
         // return to the initial position if there is no hit
         if (!droppedOn) {
            currentlyDragged.x = startX;
            currentlyDragged.y = startY;
         if (correct == objects.length) {
              var congrats:CongratsMC = new CongratsMC();
              // place i in the middle of the screen
              congrats.x = (stage.stageWidth - congrats.width) * .5;
              congrats.y = (stage.stageHeight - congrats.height) * .5;
              addChild(congrats);

    Try the code below.
    Also, use int instead of Number whenever possible - it is smaller and faster.
    import flash.display.MovieClip;
    import flash.display.Sprite;
    var startX:Number;
    var startY:Number;
    var correct:int = 0;
    var attempt:int = 0;
    var currentlyDragged:MovieClip;
    // collection of objects stored in array
    // so that you can reference them programmatically
    var objects:Array = [at1, in1, in2, in3, in4, in5, in6, in7, in8, on1, on2];
    var congrats = new CongratsMC();
    congrats.addEventListener("close", closeCongrats);
    activateObjects();
    // assigns listeners and other functionality to the objects in objects array
    function activateObjects():void {
         for each(var mc:MovieClip in objects) {
              mc.addEventListener(MouseEvent.MOUSE_DOWN, pickObject);
              mc.buttonMode = true;
              // assign drop targets based on names
              switch(String(mc.name).substring(0, 2)) {
                   case "at":
                        mc.dropTargets = [targetAT1];
                   break;
                   case "in":
                        mc.dropTargets = [targetIN1, targetIN2, targetIN3, targetIN4, targetIN5, targetIN6, targetIN7, targetIN8];
                   break;
                   case "on":
                        mc.dropTargets = [targetON1, targetON2];
                   break;
    function pickObject(e:MouseEvent):void {
         currentlyDragged = MovieClip(e.currentTarget);
         currentlyDragged.startDrag();
         startX = currentlyDragged.x;
         startY = currentlyDragged.y;
         stage.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    function dropObject(e:MouseEvent):void {
         stage.removeEventListener(MouseEvent.MOUSE_UP, dropObject);
         stopDrag();
         var droppedOn:MovieClip;
         correctCounter.text = String(correct);
         if (currentlyDragged.dropTarget) {
              // loop through targets belonging to the currently dragged clip
              for each(var mc:MovieClip in currentlyDragged.dropTargets) {
                   if (currentlyDragged.hitTestObject(mc)&& mc.notUsed) {
                        // get the target
                        droppedOn = mc;
                        mc.notUsed = false;
                        currentlyDragged.removeEventListener(MouseEvent.MOUSE_DOWN, pickObject);
                        currentlyDragged.buttonMode = false;
                        currentlyDragged.x = droppedOn.x;
                        currentlyDragged.y = droppedOn.y;
                        correct++;
                        correctCounter.text = String(correct);
                        removeTarget(droppedOn);
                        // stop loop - it is not necessary to continue
                        break;
         attempt++;
         attemptCounter.text = String(attempt);
         // return to the initial position if there is no hit
         if (!droppedOn) {
            currentlyDragged.x = startX;
            currentlyDragged.y = startY;
         if (correct == objects.length) {
              // place i in the middle of the screen
              congrats.x = (stage.stageWidth - congrats.width) * .5;
              congrats.y = (stage.stageHeight - congrats.height) * .5;
              addChild(congrats);
    function removeTarget(target:Sprite):void {
         var i:int = 0;
         for each(var mc:MovieClip in objects) {
              for (i = 0; i < mc.dropTargets.length; i++) {
                   if (mc.dropTargets[i] == target) {
                        mc.dropTargets.splice(i, 1);
    function closeCongrats(e:Event):void {
         removeChild(congrats);

  • Updates for previously paid for apps that address stability issues, bug fixes, other improvements that a customer is entitled to

    Why is the policy of Apple to prohibit customers from downloading FREE updates for previously paid for apps that address stability issues, bug fixes and other improvements that a customer is entitled to because the customer does not currently have a credit card on file that they can verify has an available balance??? I can understand it even for free apps or apps on sale or because most of those apps depend on in-app purchases but COME ON. Where is the ethics in that policy? Where is the consumer protection? Especially considering the ONLY marketplace to receive these third party products is through apple. INSANE.
    Wasted another 3 or 4 hours today trying to find a solution. I am unable to provide alternative payment method and money is tight for next 2 weeks but this is temporary. It's not as if I will never be purchasing more apps and apple products in the future. I have been a loyal apple customer since the days when Power!ac 9500 retailed for $8,000.00. Another words for a very long time.
    Anyone else find this to be a legitimate issue?

    I am all for any instance where I am asked to verify my account or Apple ID. The issue is that I am being denied delivery of a beneficial update of a premium, already paid for app... Because I am (at the moment) maxxed out with my credit card I have associated with my Apple ID.
    There are four different (full version) paid for apps that just all released major updates.  The third party developers offer the updates for free to customers who have purchased the full version of the app and the update includes stability improvements, iOS 7 comparability, bug fixes and expanded functionality.
    These are not apps that, in total, cost over $100... And that I use every day.
    Never had an issue with being required to verify my account or Apple ID.

  • I need help with IOS 7, there is a major bug that needs to be fixed in an upcoming Update

    There is a big that needs to be FIXED an in upcoming update.
    Ok, on my ipad, the notifacation center says the weather is going to be 13 degrees celceuis, I am wanting to use the American metric units, which is Fahrenheit, how do I fix it, it says yahoo provides weather info! I taped on it, it led me to the internet, it said on yahoos website that it is 88 degrees Fahrenheit, but it won't show up on my ipad notifaction center,  how do I fix it?? Need help
    I have already done a hard reset, I also did location service off and then back on, the problems persist, some one told me that a third party weather app was changing the weather to celceuis, this is NOT true, need help how do I fix this?
    I have IPAD 3 gen, IOS 7

    Apple will never see your post here
    They do not monitor these posts for problems
    You really should post at
    http://www.apple.com/feedback/iphone.html
    http://www.apple.com/feedback/ipod.html
    http://www.apple.com/feedback/ipodtouch.html
    http://www.apple.com/feedback/ipad.html
    Allan

  • My iphone wont download the bug fix ios 8.0.2

    my iphone wont allow me to download bug fix ios 8.0.2 update

    What happened when you try?
    If you want to update directly from your iPhone, you need to plug into the power supply. and iPhone connected to the Internet using Wi-Fi.

  • Thoughts on ios 6.1 stability/bug fixes?

    Just got a push notification on my ipad saying that ios 6.1 is out.
    Anybody brave enough to try it and how is it compared to 6.0.1? (stability and bug fixes are my main concern)
    If the numbering schemes are to be trusted, I would figure 6.1 is different enough from 6.0.1 that it gives Apple a chance to break some new things.
    I got burned really badly by 6.0 and thankfully 6.0.1 was good enough to fix most of the crash-and-burn problems from 6.0, but these days, I don't trust Apple to come up with anything decent.

    Skydiver119
    Gee, that was a quick response... I'm still running 5.1 on my iphone 3gs (never upgraded cause I didn't want to lose google maps)... my ipad and ipod touch are running 6.0.1 and it seems the added features of 6.1 are useless for me on those devices.
    I know of a really annoying bug in the music player app (when I have shuffle on and reboot the device, it says it's shuffling but it's not.. I have to toggle shuffle many times before it really figures out it needs to be on shuffle)...... Some of the problems I saw took me days/even a week to find, so I would also also like to know how it behaves long term.
    My touch is the most used ios device I have and I don't want to upgrade as long as it's less stable or more buggy than 6.0.1.
    If anybody encounters anything broken/wonky/unpleasant with 6.1, please, I would encourage you to share.  So far, I see no reason to upgrade and after 6.0 came out, once bitten twice shy.

  • Iphone in recovery mode after update to bug fix on IOS 7

    Iphone 4 has gone into recovery mode after updating a bug fix on IOS 7. Is there any way to fix it without having to restore?

    No. 
    http://support.apple.com/kb/ht1808
    1. Turn off device
    2. Connect USB cable to computer; leave the other end alone
    3. Press and hold the Home button down and connect the docking end of cable to device
    4. Continue holding the Home button until you see the "Connect To iTune" screen
    5. Release the Home button
    6. Open iTune
    7. You should see "iTunes has detected the device in recovery mode"
    8. Use iTune to restore device
    Note: You need to be patient and repeat the above many times to recover your device
    Here's a link that discusses recover mode:  http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm

  • HT1688 I updated my iPhone 5C to the iOS 7.0.1 "bug fixes" update and it has made my phone glitch constantly and has just made it a complete nightmare. How can I go back down to iOS 7?

    basically yeah, I updated my software because it said that iOS 7.0.1 was out as a bug fixes update and now my phone constantly glitches the **** out, its super slow, and it pretty much created more bugs than it did fix them. So how can I go back to iOS 7? because 7.0.1 is an absolute nightmare.

    Try updating to iOS 7.0.2.
    Does your iPhone still have performance issues? Have you tried the basics?

  • After updating to IOS 8.0.2 on my IPAD2 s Prorked great with last IOS version. Is there a bug fix?

    After updating to IOS 8.0.2 on my IPAD2, I cannot print to my Samsung Wireless Printer. It worked great with last IOS version. Is there a bug fix?

    Try this:
    1. Turn the router, iPad and printer off
    2. Turn on the router and then wait 30 seconds
    3. Turn on printer and then wait 30 seconds
    4. Turn on your iPad and test print.

  • Story does not correctly export fdx file with scene numbers? Bug needs to be fixed.

    Story does not correctly export fdx file with scene numbers? Bug needs to be fixed.

    Okay, Even if i remove the scene numbers from Story and export the file to Final Draft 8. The format in incorrect. The "transitions" ex. CUT TO:  are not in the correct allignment. Also there are numbers on each of the dialogues
    Pretty much alot of the formatting is not the same. Spaces  that break dialouge and action which are there in Story, are not converted over to Final Draft.
    Please fix this as soon as possible.
    thanks,
    Rohit

  • Apple Released iOS 7.1 with Major AirPlay Bug Fix

    Apple released iOS 7.1 with interface refinements, bug fixes, improvements and new features on Monday. But has the Airplay bug been fixed?
    During the test of X-Mirage, we have found that AirPlay on iOS 7 is not as stable as on iOS 6 and we have reported a serious bug to Apple:
    iOS 7 BUG – The devices stop sending mirroring data to Apple TV or X-Mirage one minute after iOS devices auto-locks
    https://discussions.apple.com/thread/5468657
    After using the iOS 7.1 today, we find that Apple has fixed the bug and AirPlay is more stable than before, so our distinguished X-Mirage users, you can update to iOS 7.1 freely and enjoy more fantastic AirPlay Mirroring and Streaming services. Getting the update is easy. Go to Settings. Select General. And tap Software Update.

    thanks for the information?

  • [svn:fx-trunk] 12786: Fixed bug with state property value assignments.

    Revision: 12786
    Revision: 12786
    Author:   [email protected]
    Date:     2009-12-10 07:35:43 -0800 (Thu, 10 Dec 2009)
    Log Message:
    Fixed bug with state property value assignments. SetProperty pseudonym values (width/explicitWidth, height/explicitHeight) were not getting set correctly, causing values to be incorrectly assigned to 0 in some cases.
    QE notes: -
    Doc notes: -
    Bugs: sdk-24446
    Reviewer: Corey
    Tests run: checkintests, Mustella tests/States, tests/mx/states
    Is noteworthy for integration: Yes (fix requested by tools)
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-24446
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/SetProperty.as

    Add this to the end of your nav p CSS selector at Line 209 of your HTML file, after 'background-repeat...':
    margin-bottom: -2px;
    Your nav p will then look like this:
    nav p {
              font-size: 90%;
              font-weight: bold;
              color: #FFC;
              background-color: #090;
              text-align: right;
              padding-top: 5px;
              padding-right: 20px;
              padding-bottom: 5px;
              border-bottom-width: 2px;
              border-bottom-style: solid;
              border-bottom-color: #060;
              background-image: url(images/background.png);
              background-repeat: repeat-x;
              margin-bottom: -2px;

  • High pitched static on other end is a software bug that needs to be fixed immediately

    Every once in a while, the callers on the other line start hearing nothing but a high pitched static from me. I have no idea when it happens or what causes it. I can hear the other person just fine but they cannot hear me at all. I find out when the other person keeps saying hello and eventually hangs up. Once it happens, it happens on every call after that. 
    The only thing that fixes it is restarting the phone which is extremely annoying. This is most definitely a software bug and has nothing to do with whether you have good signal or if you use a case or not.
    I tested this with by calling my wife's phone when she was with me after the glitch happened.
    1) I had no case on the phone.
    2) I was getting a perfect signal (also perfect 4g)
    3) Switching to loudspeaker did nothing.
    4) Turning noise reduction on or off did nothing.
    5) muting and unmuting did nothing (except when muted there was obviously no static, but it came back upon unmuting)
    6) Turning wifi on or off did nothing
    7) Turning bluetooth on or off did nothing
    Answering an important call and hearing "hello, hello, hello and click" is the most annoying thing ever. Because then I have to restart my phone which takes quite a while and the other person is repeatedly calling me in the meantime. 
    This needs to be fixed immediately. After all, this device is a phone first. All those smart functions come second. If I can't make or receive calls properly this device has to go.

    Oh no! This definitely can be annoying!!
    We have had others with the Droid Charge call/write in with the same issue. Replacing the phone didn't resolve which also leads me to believe it is a software glitch.
    First, make sure you do have the most recent sofware version vy going to:
    Settings>About Phone>System Updates>Check New    You should currently have i510EE4
    We have let Samsung know that there is an issue with some of the Droid Charge's having a high pitched noise.
    At this time, they are looking into it in order to provide a resolution.

  • After updating to ios 5, my calendar sometimes freezes when entering a new event. I have tried syncing but it doesn't fix the problem. Are there any bug fixes for this? Any ideas would be great thanks, I don't really want to have to reset everything!

    After updating to ios 5, my calendar sometimes freezes when entering a new event. I have tried syncing but it doesn't fix the problem. Are there any bug fixes for this? Any ideas would be great thanks, I don't really want to have to reset everything!

    Try to reset the iPod by  pressing the home and sleep button for about 10sec, until the Apple logo comes back again. You will not lose data doing a reset, but it can clear some glitches after installing new software or apps.

Maybe you are looking for

  • Why isn't itunes 11.1.3 installing on my new VAIO laptop with windows 8.1 (64 bit)?

    I am trying to install itunes on my new VAIO laptop 64 bit with Windows 8.1 operating system. At the end of the installation, as soon as itunes is trying to open, an error message comes up, saying "an error has caused the program to stop running." I

  • EAS stopped communication with Shared Services

    All of a sudden my EAS seemed to have stoppped communicating with Shared Services. I can log into the EAS console, but cannot do the following: 1. I cannot open calculation scripts to edit them. 2. After I try to open one, it then logs me out complet

  • Long response times calling XE on a Linux Server

    I've installed XE on a Suse 9.2 Linux Server. In most cases I get a fast access to XE over APEX. But sometimes, I get a timeout when a I call a page on APEX. There is also a paralell running Apache webserver (port 80) on the server. XE port 8080. Doe

  • Ora-38500 physical standby database not started

    hiiii, When i executed the command at physical standby database server. it give error: To start real-time apply: SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE 2> USING CURRENT LOGFILE; Error at line 1: ORA: 38500 using current logfile option n

  • My mini loses the mouse cursor when it goes to sleep

    Since I upgraded to OS X 10.7, my MAC mini loses the mouse curson when it goes to sleep. I am able to use the mouse to "awaken" the system and get the home screen, but the system will not display the mouse cursor. The only thing thast will recover th