0
votes
0answers
16 views

Debug can't stop on simulator using xcode 4.6.2

Even with a basic project like new master detail project. When running, the simulator launch the app, it stay all black, and I can't stop the debug on xcode. It stop only when I close xcode. Then, the ...
0
votes
0answers
32 views

Weird image view error

I have created a subclass of UIView and in the init method i have this code which creates the error _blackBackground = [[UIView alloc] initWithFrame:self.frame]; _blackBackground.backgroundColor ...
0
votes
0answers
20 views

Access options are not permitted for this account type. The options argument must be nil.;

I'm looking at my crash logs and i could see this crash: "Access options are not permitted for this account type. The options argument must be nil.;" it's my first time to encounter such crash so i ...
1
vote
1answer
35 views

C++ virtual table crash LLVM/XCode

I'm getting a weird crash in the constructor of a class that hasn't changed much recently. I've trimmed away a lot of stuff, but here is the gist of it: #define Accessor(PropName, Type, Default) \ ...
0
votes
1answer
66 views

Single Tab in a Tabbed-iOS Application keeps crashing

I am using the BWRSS RSS Feed wrapper in my tabbed iPhone/iPad application. I am using the latest Xcode Version and I also have had two versions submitted and accepted. The First of which worked ...
2
votes
0answers
236 views

Xcode 4.6.2 crash when run of a second time

Xcode 4.6.2 seems quite buggy When I run a second time my any project I get SIGABRT crash in first second. I remove completely Xcode and install again, (yeah I try turn off and on again). Also I ...
0
votes
0answers
23 views

tableview gives EXC_BAD_ACCESS for Delegate

In an xcode project, i'm using a tableview in one of the storyboards. I'm using variables from 'delegate' in the table view. In very beginning, it gives the error, Thread 1: Program received ...
0
votes
0answers
92 views

Iphone App crashes on AD HOC

my app runs fine on development mode, but for some reason on ad hoc i get a crash right after loading screen. I really can't understand what could be wrong, any tips on how to test it better? Apple ...
0
votes
1answer
123 views

iOS app crashing for unknown reasons

I am using the latest version of XCode and building for iOS 6.0 and above. The following is the crash log I get. It doesn't seem to be helpful at all. The only thing I notice is that for My App it ...
0
votes
1answer
48 views

App crashing on iPad but not simulator

My Application is crashing when I run it on the iPad but works 100% on the iPad simulator I am using Version 4.6.1 of Xcode and Version 6.1.3 on the iPad. The problem lies where I am trying to pass ...
0
votes
0answers
38 views

Simple UIScrollview with UIImageView with zooming

I have an application that loads images into a UITableViewController, (Wine Labels), then you can navigate to the Item Details. On this page you can see a larger image of the Wine Label...IOS 6.1... ...
0
votes
1answer
41 views

Program crashing for unknown reason

I can not figure out why this error is happening. I have been on it for days now. I have a VC called ADViewController this displays a question from a plist file. It has its own class and is a subclass ...
1
vote
0answers
59 views

asset library crashes application without any message in log

That's the log in organizer ocesses Name rpages recent_max [reason] (state) MobileMail 1557 1557 ...
2
votes
0answers
52 views

xcode crash each time I try to modify my source code

I'm using Xcode 4.6.1 on OSX Mountain Lion 10.8.3 I have moved my source code from my macbook air to my iMac this morning. And now, each time I try to modify my source code, XCode crashes! For ...
1
vote
2answers
49 views

addAnnotation crash

I have crash in my project. I use MKMapView and sometimes it crashes in addAnnotation(s) method. I get message from XCode that crash stating method _insert(objc_object*, MKQuadTrieNode*, ...
0
votes
2answers
40 views

where to look for a bug. document, app delegate or both?

following situation: i have a document based App. by default when i open the app it displays just the menu on top of the screen. then i hit file->new and it opens up a brand new document.xib ...
0
votes
1answer
168 views

Xcode 4.6 crash on Mountain Lion

I'm trying to use Xcode but since I'm on OS X Mountain Lion (10.8) it always crashes. If I try to run an app (a new project without anything) with the iOS Simulator it crashes. If I go into settings ...
0
votes
2answers
572 views

XCode 4.6 organizer does not symbolicate my app crash stack trace

It has been a while since I used symbolicate in XCode and it used to work. Today when I tried this... Archive my app. Install the app on my device from XCode. (Just connect the device and run the ...
0
votes
1answer
42 views

When I run iphone app on simulator, screen is white

I don't know what is wrong with the app it was working fine until I tried to change stuff with the textlabel to textview then it crashed. So I tried changing it back to when it worked and it still ...
2
votes
3answers
89 views

How to track the exact issue for the crash in iOS

When I was debugging my iPhone app, I got an error and the app got crashed. I have added a exception break point but it didn't point any where in the code and crashed in main.m. Here I am adding the ...
-1
votes
1answer
198 views

Not informative exception info on xCode 4.6

If my application crashes I take the information on All Output window like this: Uncaught exception: * -[NSPlaceholderMutableString initWithString:]: nil argument 2013-02-28 04:09:15.209 ...
0
votes
3answers
43 views

_loadViewFromNibNamed called even though no nib associated with UIViewController

I have a UIViewController subclass which I am instantiating and trying to push on to the navigationController like so : MenuVC *menuVC = [[MenuVC alloc] init]; [self.navigationController ...
0
votes
0answers
215 views

how to solve memory iOS App Crashes?

Last week I sent an app to iTunes Connect. All seemed to work fine, the app passed the Xcode validation after archiving, it did not (and it does not nowadays) crash on any point I tested. For my ...
0
votes
3answers
76 views

UIAlertview delegate will crash when setting delegate to self

I have this simple piece of code: UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Contact" message:@"This contact does not exist yet" delegate:self cancelButtonTitle:@"Ok" ...
0
votes
3answers
87 views

xcode terminating app due to uncaught exception

I have made an app in xcode and whenever I build or run the app it says there are no issues but then after the launch image displays the app seems to crash and throw up this error. Terminating app ...
0
votes
0answers
51 views

Xcode is Crash while application is being upload to App Store

I recent use Xcode 4.6(But it also crash in another Xcode Version) on Mac OS X lion 10.7.5 And I have run these command in terminal $sudo cp /usr/lib/libc++abi.dylib /usr/lib/libc++abi.dylib.orig ...
0
votes
2answers
143 views

Converting NSArray to NSString crashes?

Trying to get a label to show the data pulled from some JSON... - (void)connectionDidFinishLoading:(NSURLConnection *)connection { NSError *myError = nil; NSDictionary *res = ...
1
vote
1answer
108 views

i fail to understand these 2 crash reports

Since i received comments of crashes but the app never crashes for me, I now use critterism to hunt down crashes. I received one report that pointed to me to an error by me. It was easy, since the ...
1
vote
1answer
74 views

coredata intermittant crash [NSEntityDescription entityForName:inManagedObjectContext:]

I have one customer using an iPad 2 that's experiencing a crash and I can't reproduce it. Crash report: Last Exception Backtrace: 0 CoreFoundation 0x37a5429e __exceptionPreprocess ...
3
votes
0answers
73 views

New Crash Logs do not Appear in Organizer for one specific iOS device

Does anyone know why the organizer will not find my new crash reports for one iOS device but it does for my other devices? Let me explain: I was demoing an app today on both my iPad 3 and iPhone 5. ...
0
votes
1answer
153 views

App crashing because of ads [closed]

I'm trying to change ads to AdMob ads, instead of iAd ads. I got it to work on two places of the app, but when I try to open the ads in the third and last page , the app crashes.. So I decided to ...
0
votes
1answer
185 views

Xcode 4.5.2 no more link to the crash when I click on the backtrace on Thread, no symbolicated

On Xcode 4.5.2 when my application Crashes I didn't have the crash's line on my code. The crash is not symbolicated. I just put this line to test my crash handler: NSMutableArray *arr = ...
0
votes
1answer
66 views

App crashing - was accepted into app store

I've updated my app from iOS5/iPhone 4 to iOS6/iPhone5 compatible. The app was approved by the apple store and is available to download, when downloaded from the app store it crashes on start-up. ...
0
votes
0answers
96 views

Xcode iPad app crash during transition

I'm despairing at this crash! It crashes only on iPad not on simulator (iPad 1, iOS 5). I don't get an error in Xcode, and I have no leaks. It crashes after calling: [self ...
3
votes
2answers
125 views

iOS Crash Stack Deciphering

We receive multiple unreproducible crash reports from the field for our iPad app "MyApp" with about 3000 daily users. Reason: "unrecognized selector sent to instance" Affected devices: only iPad 1. ...
4
votes
2answers
430 views

ios App works while testing but crashes after release

We just released a new iPhone App using xcode 4.5.2, cordova-2.2.0 Everything worked fine while testing. But after the release today it crashes instantly. The start screen is flickering for a second, ...
0
votes
1answer
161 views

iOS App crashes when setting breakpoint in Xcode

I have an app I'm developing where setting a breakpoint in Xcode while the app is running causes it to crash. At least I assume it is a crash. There is nothing in the console saying what happened. ...
0
votes
3answers
130 views

Application crash on ios6 but working fine in ios5

I have an application for audio/video call using SIP protocol.It working fine when i tried to make a call with ios5 device or used it on ios 5 device but it crash when i tried to call or use it on ios ...
0
votes
2answers
207 views

EXC_CRASH (SIGABRT) Cannot track it down - please see crash log attached - GADObjectPrivate.m

I am having trouble with one of my apps, apple rejected it due to it crashing on launch - however I cannot replicate this. I have even provided an adhoc build to another device to test and it works ...
0
votes
0answers
193 views

Unable to Symbolicate iOS App Crash Report

My app is occasionally crashing for some users and I have been unable to replicate the problem. I have managed to get a few crash reports from one of the users which I have imported to Xcode, but I ...
1
vote
0answers
108 views

App works fine on Debug but not on AdHoc

I have an App that works perfectly on Debug (device and simulator) but once I archive it for AdHoc it just crashes. Even with the Distribution provision files selected y clic play and works fine. ...
2
votes
0answers
137 views

Interpreting a TestFlight crash report

I just made some updates to my app, and have been seeing some new crash reports in TestFlight that I can't find much information on online. Can anyone help me interpret what's going on here? It's ...
-1
votes
2answers
134 views

ScrollView with over 150 images crashes

I've an application which is a scrollView filled with over 150 images .. I've followed this tutorial to create it .. the application is over 550MBs and it has about 500 (150 for iPhone 5 & 150 for ...
4
votes
2answers
1k views

Xcode 4.5.2 keeps crashing on Mac OS X Mountain Lion?

I have been using Xcode with mac os x lion and I kept getting an error when trying to test my app on my ios device. I formatted my computer and upgraded to mountain lion and revoked all the apple ...
0
votes
0answers
57 views

NKDBarcode and EAN13

I'm integrating the NKDBarcode in my project, and it works fine. Only when I use EAN13, my app crashes with the following error: [__NSCFConstantString swapParity]: unrecognized selector sent to ...
1
vote
2answers
207 views

objc_msgSend 15 crash

I'm trying to track down a bug and i've got a crash log that looks like this: 0 libobjc.A.dylib objc_msgSend + 15 1 CoreFoundation ...
0
votes
0answers
242 views

CGSConvertBGR888toRGBA8888 crashes n bad exc

CGSConvertBGR888toRGBA8888 crashes and bad exc in qualcom imageTarget code while we want to add our code in ARCAlView ? I think it take time in createCGImage and when i send image on server it ...
0
votes
4answers
59 views

How to see an object that is receiving messages after being deallocated

I am getting below error, but want more specific information like line number, class_name, method_name etc. -[__NSArrayM release]: message sent to deallocated instance 0x72ab440 In other words, ...
0
votes
1answer
121 views

Getting Exc_Bad_Access in sqlite3_prepare_v2 irregularly

Before inserting into livecategories, I am checking this id is exists if not then insert the value. But sometimes it crashes and get exc_bad_access. Why I am getting this? Please see attached image. ...
1
vote
0answers
65 views

How to find the crash position from customer's ipad log?

I know a crash in my app form customer's iPad log, the exception is :-[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array, but I cannot position this crash in code and I cannot ...

1 2 3 4 5
15 30 50 per page