IPhone app crach on simulator 'run' but not in 'debugger'

Hi, I am currently doing some development on the iPhone simulator and seem to be stuck with a problem. When running my code directly from the simulator or from the xcode 'run' feature, the application I am writing will crash (seems to be a socket select problem). However, when running through the debugger, all is fine.
The console doesn't give any details, nor do the system logs, expect for the following:
*9/23/08 10:23:27 AM SpringBoard\[71987\] Application <SBApplication: 0x150a6b0> com.yourcompany.tests_iphone activate: animated deactivate: killed exited abnormally with signal 9: Killed*
I don't have a device to test it on yet, so can't tell if it's any different.
Does anybody know of any tools that could help me understand what is making the application crash or might have suggestions on how to move forward?
Thanks
Message was edited by: Rigoni

Never mind. I restored my phone to new and installed what I needed.

Similar Messages

  • My friend has lost his iPhone 5.on find my iPhone when entered id and password app says id is valid but not activated. What should I do to find that lost iPhone

    My friend has lost his iPhone 5.on find my iPhone when entered id and password app says id is valid but not activated. What should I do to find that lost iPhone

    If Find My Phone has not been activated on the iPhone before being lost there is nothing more that you can do to locate it with iCloud.  The only option is physical search for it.
    If you have an idea of the location, call the iPhone and see if you can hear it ring.

  • I downloaded an app; went to my computer, but not to my iPhone

    I downloaded an app; went to my computer, but not to my iPhone.  I have iCloud plus had connected my phone to my computer.  How do I get the app to my iPhone?

    Open itunes, connect iphone, select what you want to sync, sync

  • I can't open firefox the running but not responding window opens and says to close the existing window. I can't do that shutting down the computer doesn't do anything to help. I've done all the suggestions here. I've uninstalled and reinstalled firefox

    Firefox will not open. I get the firefox is already running but not responding window... I have tried rebooting with no help. I have tried to end the process via cntrl+shift+esc and nothing firefox is listed to end. I have tried find the app data via the run icon in the start up window, I have no run icon on this system (Acer with windows vista(?)
    == This happened ==
    Every time Firefox opened
    == The computer was hard shut down and did a improper shut down scan when it was restarted ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)

    I am having a similar problem. Running Xp.
    Latest revision of firefox.
    After using firefox for a while if I exit, parent.lock is locked and i have to reboot to reload firefox.
    I have killed all firefox applications from task manager (usually there are none). and I have tried 3 different "file unlock" programs including unlocker to no avail.
    I also recently installed a program that shows -all- open files, and parent.lock is not listed, and thus not closable/unlockable from there.

  • My iphone is backing up to icloud but not my macbook air nor my iMac. Any ideas?

    My iphone is backing up to icloud but not my macbook air nor my iMac. Any ideas?

    I use Time Machine with an external HD.  That seems to do what I need.  Others also recommend an second EHD with a bootable clone of your boot drive and use a 3rd party app like Carbon Copy Cloner, SuperDuper, Synk Pro, etc. to keep the clone up to date.
    In addition to Time Machine I have a hard drive that I keep key files backed up with Synk Pro which does incremental backups, i.e. copying only those new or modified files.  For other candidates for the cloning and backup apps to go MacUpdate.com and search for "file backup" and "clone".

  • Flex mobile 4.6 app works inside flash builder but not in android emulator

    Originally posted on stackoverflow: http://stackoverflow.com/questions/8663892/flex-mobile-4-6-app-works-inside-flash-builder- but-not-in-android-emulator
    I have a basic flex mobile 4.6 app and it works fully fine in the flash builder built-in emulator using an android device profile like aria...
    It also launches fine in the android emulator but one particular view shows blank (and this view works fine in flash builder).
    Before I get in to many details of the view are there any categorical gotchas that can be causing this?
    I can't seem to get the trace statements from the app to show in 'adb logcat'. It seems I need to compile a debug version of the apk but I don't know how to do this. I use the 'Export Release Build' from the Project menu in flash builder and it doesn't seem to have an option for debug=true.
    The problematic/blank view basically uses the stagewebview and iotashan's oauth library to call linkedin rest apis... A different (and working) view can make restful web service calls in the emulator fine, so it doesn't seem to be an internet permission.
    The source code contained in the problematic/blank view is almost identical to the tutorial found at:http://www.riagora.com/2011/01/air-and-linkedin/
    The differences are: a) The root tag is a View b) I use StageWebView instead of HtmlContainer c) I use my own linkedin key and tokens.
    I would appreciate it if someone can provide me with some pointers on how to troubleshoot this situation. Perhaps someone can tell me how to debug the app while running in the emulator (I think I need the correct adt command arguments for this which matches the 'Export Release Build' menu but adds the debug param?)
    Thanks for your help in advance.
    Comment Added:
    I suspect that this has to do with connections to https:// api.linkedin.com and https:// www.linkedin.com. The only reason I can think of that the same code is not having issues inside of Flex Builder but indeed having issues in the Android emulator is something to do with certificates. Any ideas?

    Thanks er453r,
    I have created a project that clearly reproduces the bug.  Here are the steps:
    1) Create a UrlLoader and point it to https://www.google.com (HTTPS is important because http works but HTTPS does not)
    2) Load it
    3) Run in Flash Builder 4.6/Air 3.1 and then run in Android emulator.  The former works with an http status 200.  The latter gives you an ioerror 2032.  I am assuming what works in Flash Builder is supposed to work in the Android Emulator and what what works in the emulator is supposed to work in a physical device (plus or minus boundary conditions).
    I see a certificate exception in adb logcat but not sure if it's related...
    Here is the self contained View code which works with a TabbedViewNavigatorApplication:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        xmlns:ns1="*"
                        xmlns:local="*"
                        creationComplete="windowedapplication1_creationCompleteHandler(event) "
                        actionBarVisible="true" tabBarVisible="true">
              <fx:Script>
                        <![CDATA[
                                  import mx.events.FlexEvent;
                                  protected var requestTokenUrl:String = "https://www.google.com";
                                  protected function windowedapplication1_creationCompleteHandler(event:FlexEvent):void
                                            var loader:URLLoader = new URLLoader();
                                            loader.addEventListener(ErrorEvent.ERROR, onError);
                                            loader.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onAsyncError);
                                            loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
                                            loader.addEventListener(HTTPStatusEvent.HTTP_RESPONSE_STATUS, httpResponseStatusHandler);
                                            loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
                                            var urlRequest:URLRequest = new URLRequest(requestTokenUrl);
                                            loader.load(urlRequest);
                                  protected function requestTokenHandler(event:Event):void
                                  protected function httpResponse(event:HTTPStatusEvent):void
                                            label.text += event.status;
                                            // TODO Auto-generated method stub
                                  private function completeHandler(event:Event):void {
                                            label.text += event.toString();
                                            trace("completeHandler data: " + event.currentTarget.data);
                                  private function openHandler(event:Event):void {
                                            label.text +=  event.toString();
                                            trace("openHandler: " + event);
                                  private function onError(event:ErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("onError: " + event.type);
                                  private function onAsyncError(event:AsyncErrorEvent):void {
                                            label.text += event.toString();
                                            trace("onAsyncError: " + event);
                                  private function onNetStatus(event:NetStatusEvent):void {
                                            label.text += event.toString();
                                            trace("onNetStatus: " + event);
                                  private function progressHandler(event:ProgressEvent):void {
                                            label.text += event.toString();
                                            trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
                                  private function securityErrorHandler(event:SecurityErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("securityErrorHandler: " + event);
                                  private function httpStatusHandler(event:HTTPStatusEvent):void {
                                            label.text += event.toString();
                                            //label.text += event.responseHeaders.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function httpResponseStatusHandler(event:HTTPStatusEvent):void {
                                            label.text +=  event.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function ioErrorHandler(event:IOErrorEvent):void {
                                            label.text +=  event.toString();
                                            label.text += event.text;
                                            trace("ioErrorHandler: " + event);
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="label" y="185" width="100%" color="#0A0909" horizontalCenter="0" text=""/>
    </s:View>

  • My iPhone calender sync to my iPhad but not the oposite

    My iPhone calender sync to my iPhad but not the oposite

    Use this to backup your contacts,
    https://itunes.apple.com/gr/app/my-contacts-backup/id446784593?mt=8
    Then you will be safe to sync with Outlook. Remember that: Don't sync your iPhone contacts with an empty Outlook address book. If your Outlook address book is empty create a fake contact before you sync.

  • Mac mini appears to be shutting down due to overheating fan is running, but not strongly

    late 2012 mac mini shuts down after running several minutes in a streaming task environment.  Fan is running, but not very forceful.  wondering if the fan itself has a temperature sensor that causes the fan to engage in higher rpms or if that sensor/command comes from somewhere else in the computer

    Install a temperature/fan speed app.. I use the free Macs Fan Control app downloaded from the internet. Yes, there are temperature sensors that contorl fan speed
    http://www.crystalidea.com/macs-fan-control

  • Iphone Calendar Invites sync with OWA but not Entourage

    I have a MacBook Air (OS X 10.5.7), iPhone 3g (running os 3.0) and Office 2008. I have Entourage set up and running for email and contacts but it only syncs one-way for calendar - from Entourage/Exchange to iPhone, but not the reverse.
    The iPhone syncs with changes made in Entourage/Exchange calendar.
    If I create a calendar event on my iPhone, it will show up in OWA, but not in the Entourage calendar. If I accept a calendar invite on the iPhone, it shows up in OWA, but not in Entourage.
    If I create an appointment or calendar event in Entourage, it shows up in OWA and the iPhone.
    If I create an invite for an event on the iPhone, other participants receive the invite.
    The only thing that doesn't work is creating or accepting a calendar event on the iPhone or OWA and seeing it in Entourage. Help! Very frustrated.

    On your iPhone, go to settings and then mail,contacts,calendar,etc. Change your default calendar to Entourage.

  • Some games and apps work on nokia n8 but not on no...

    i have a nokia c7 and i just went to the ovi store to download need for speed shift HD but it said that it was not available for my set but when i set the phone as n8 it said your phone is set
    why? they both have same os and almost the same hardware with the 3d accelerometer and all
    the RAM is same the graphic capeabilities of both phones are same thenwhy and this not only for this game for a number of apps

    699taha wrote:
    Hello did you try to download the game? CAN YOU DO THIS FOR ME PLEASE? just set your phone as n8 send the link of the game to your phone and try to download and then run it THANK YOU!!!!!!..... PLEASE TELL ME IF WORK OR NOT
    Need for Speed Shift is now available in Ovi Store for C7. It is named NFS Shift instead, and unfortunately, it is not free.
    IMO, Need for Speed Shift is free only for N8 was as a form of sales marketing technique to differentiate the product (N8, as an Nseries is suppose to be a flagship device anyway) from other Symbian^3 devices. I'm not sure why they can't launch paid version of NFS for C7 earlier, probably technical issue maybe. I wanted to buy but I bought GT Racing instead, since it is available from the beginning.
    I faced similar issue that certain apps are available to N8 but not to C7, you can email Ovi support to ask them why, basically I forgot what they replied me lol.

  • Program is running, but not showing in dock?

    Sometime when i open a program, for instance, QuickTime. When i close the video, the program is still running but not showing in dock. When i display open applications by pressing cmd+alt+esc it i still running?
    Here's an expample. You can see that quick time is still running, but clearly not showing in the dock. (Sorry for Danish language on screenshot)

    I have this very same problem too.  In my case, it's specific to the Preview app only. At least, that's the only app that I've noticed.
    I've done all the proper troubleshooting and maintenance stuff but it still happens. Although I don't know what negative this causes my system, I'd be interested in finding out what is going on.
    My Mac is an iMac 27" (late 2013), 3TB Fusion, 10.9.1.
    Thanks,
    Marcus

  • V6.01, Windows 7, click on icon, "firefox is already running but not responding" Task manager doesn't know about it. I can't quit it or get it to load. Brand new install. What to do?

    Brand new Lenovo computer, Windows 7 Home. New install of Firefox 6.0.1, set as default browser, don't launch when I click done. Icon appears in tray. I click the icon, and a message says "firefox is running but not responding. To open a new window, you must first close the existing process, or reboot". It's not obviously running. I can't find a way to make it quit. Task manager doesn't list it as a current application. Uninstall using the control panel uninstall function and then reinstalling gives the same message. Rebooting doesn't fix the problem and gives the same message. Firefox had been working until I tried to update my bookmarks.

    No can do. I can delete the current profile and install Firefox, which should create a new blank profile. The message still says "Firefox is already running." I can place my old profile in the proper folder, and Firefox will still be already running. I can't actually use Firefox, because even though the message says it is running, there is nothing on the screen I can access.
    After uninstalling Firefox, deleting the two items left in the Programs folder, and deleting the profile again, it still didn't work. I then got frisky and from the Roaming folder I deleted the Mozilla folder which contains the Firefox folder which contains the now empty Profiles folder. That worked, and a new set of folders with a new blank profile were created. So apparently it was the empty folders that never got deleted that were causing the issue.
    Thanks for your suggestion. It got me thinking.

  • Firefox 29.0.1 on Windows 7 (64-bit): ALWAYS get "Firefox is already running but not responding..." error and need Task Manager to close/restart Firefox.

    I run Firefox 29.0.1 on Windows 7 (64 bit) and I get the "Firefox is already running but not responding. In order to open the program you must close the existing window." error. EVERY TIME I try to start Firefox. The posted solution works to start the program, but it is not a permanent solution. I go through the Task Manager and end the old Firefox process, then I can open a new window. While working, I can open multiple tabs and multiple windows, everything seems to (usually) work the way it should. Then after I completely exit Firefox, in order to open the program again I need to fix the SAME error again. Every time. It doesn't seem to hurt anything really, but it is quite annoying.
    I used to get this same error on some of the older Firefox versions but it was only once in a while. With the new 29.0.1 it is literally EVERY TIME I TRY TO RUN FIREFOX!!!!
    So, down to the big question: is there a permanent fix for this yet? Or will there be one included in the next version update? Or am I going to have to go back to Internet Explorer? I know I am not alone in this experience; i've seen several other users posting similar questions but none of them received satisfactory answers. So what's the story here, team Firefox?

    '''https://support.mozilla.org/questions/997866?esab=a&s=&r=1&as=s'''.<BR>
    This is not a cure but will make it easier if Firefox locks up.

  • On switching on, a message says 'Firefox is already running but not responding...........' then tells me to close it and restart but how can I close it when the page isn't yet displayed?

    When I switch on my computer I get the desktop then I try to click on Mozilla Firefox but get the message, 'Firefox is already running but not responding. To open a new window you must first close the existing Firefox process or resart your system.' I looked up how to close but I need to click on 'file' then 'exit'. How can I do that when I can't see the page yet? IE is working fine.

    See also [[Firefox is already running but is not responding]]

  • When I try to start Firefox, I get a message that it is already running but not responding and I can't run another Firefox at the same time. I uninstalled and reinstalled. No change. Tried various other suggestions. Help!!

    When I try to start Firefox, I get a message that it is already running, but not responding and that I should close it before trying to run another Firefox. But I cannot find a way to close Firefox program that is not running as far as I can see. I tried uninstalling and reinstalling Firefox, but that did not work. I've tried various other things, but no luck. I thought programs should stop when the computer is turned off, but that didn't work either.

    How are you opening the Profile Manager?
    *http://kb.mozillazine.org/Profile_Manager
    Sounds that Firefox is still or already running.<br />
    See:
    *http://kb.mozillazine.org/Kill_application

Maybe you are looking for

  • Any difference between distinct and aggregate function in sql query cost???

    Hi, I have executed many sql stmts patterns- such as: a) using a single table b) using two tables, using simple joins or outer joins but i have not noticed any difference in sql stmts in cost and in execution plan.... Anyway, my colleague insists on

  • VERY strange lag on a Dell Optiplex 760

    I thought it would be a good idea to keep a 16GB flash drive on my keychain that booted Arch so I could work on HW for college in a consistent OS!  Everything is working great so far, but I ran into a very strange problem with a Dell Optiplex 760.  D

  • Monitor and Macbook

    I have an external monitor for my Macbook. I was wondering if I can open the lid and use the webcam instead of having to unplug the DVI and just using the Macbook display? Also, whenever I close the my MB it puts the computer into sleep mode. Is this

  • Hi installed Photoshop Cs6 on my Vista os and crashes gives following error DEP (Data Execution Prev

    Hi installed Photoshop Cs6 on my Vista os and is crashing the Photoshop and gives following error DEP (Data Execution Prevention) can someone help me..

  • Numbers function IF greater than using date & time

    I am trying to produce a number sheet that will allow me calculate a working rota for staff. The problem i am having is when i try and use a IF function to remove 1hr (for lunch) if the person works 8 hours or more. If that person works between 6 and