Tagged Questions
The nserror tag has no wiki summary.
12
votes
3answers
6k views
How to use NSError in my iPhone App?
I am working on catching errors in my app, and I am looking into using NSError. I am slightly confused about how to use it, and how to populate it. Could someone provide an example on how I populate ...
9
votes
1answer
2k views
Best Practice - NSError domains and codes for your own project/app
There is a previous SO post regarding setting up error domains for your own frameworks, but what is the best practice regarding setting up error domains and custom error codes for your own ...
8
votes
7answers
776 views
Objective-C Exceptions
I have just completed an iPhone app programming course. As part of the course, I saw
Objective-C provides exception handling using the @try directive
The system library does not use exception ...
8
votes
1answer
1k views
NSError domains / custom domains - conventions and best practices
NSError requires a domain, which I understand segments the range of error codes.
One would anticipate that there exist somewhere a registry of domain.error code but I've not been able to discover ...
8
votes
1answer
682 views
Returning errors in objective-c
Im newish to objective-c and am starting to wonder what is the common/standard/proper way for handling and catching errors?
It seems like it might be possible to use NSError to do this, is that a ...
5
votes
1answer
982 views
Setting NSError within a block, using ARC
I wish to set an NSError pointer from within a block in a project using
automatic reference counting. What follows is a simplified version of my code:
- (BOOL)frobnicateReturningError:(NSError ...
5
votes
3answers
4k views
Returning an NSString from an NSError
I am using the NSURLRequest class in my iPhone app, and the method that calls it returns an NSString which is great for when the connection goes through ok, but the issue is I need to convert the ...
4
votes
2answers
80 views
why is “error:&error” used here (objective-c)
why is "error:&error" used here (objective-c)
NSError *error = nil;
NSArray *array = [moc executeFetchRequest:request error:&error];
wouldn't an object in objective-c be effectively ...
4
votes
1answer
219 views
What's the correct use of NSErrorRecoveryAttempting, NSError, and UIAlertView in iOS?
I'm having trouble finding examples of the correct way to use NSError, UIAlertView, and NSErrorRecoveryAttempting together on iOS. Most of the documentation and examples I can find cover the ...
3
votes
2answers
75 views
MonoTouch: UIImage.asJPEG needs a NSError object
To save a UIImage to a PNG or JPEG locally you call the asPNG().Save(...) function.
The asPNG().Save() function requires an out NSError
The problem is that you can no longer just create a blank ...
3
votes
1answer
122 views
How to handle NSFetchedResultsController fetch errors?
This is from the Apple sample code:
if (![fetchedResultsController_ performFetch:&error]) {
/*
Replace this implementation with code to handle the error appropriately.
...
...
3
votes
4answers
4k views
How to detect and handle HTTP error codes in UIWebView?
I want to inform user when HTTP error 404 etc is received. How can I detect that?
I've already tried to implement
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
but it ...
2
votes
1answer
88 views
iPhone - Handling NSError into a scope
I'm trying to handle errors, and I find it very hard to know what kind of errors can be returned to me.
For example, I have this delegate method called from a map view manipulation :
- (void) ...
2
votes
3answers
101 views
Multiple release messages cause EXC_BAD_ACCESS crash
First of all i want to start off by saying I'm kind of a beginner in Objective C and the iPhone world and i'm really loving it so far, its really interesting.
I'm coming from the PHP world and trying ...
1
vote
2answers
54 views
Category NSMutableDictionary/NSDictionary should return NSMutableDictionary/NSDictionary Depending of the caller class
I was busy with this for some hours, but see no head or tail.
How should I create an NS(Mutable)Dictionary category that I can let return the same class as the sending method class.
Sample
...
1
vote
1answer
50 views
Passing Error Delegates Around
I'm trying to incorporate some sort of error handling into an iOS app. After reading that try/catch blocks aren't really good practice, I'm now looking at the &error output parameter for ...
1
vote
2answers
165 views
NSErrorDomain for packaging a HTTP result code?
There is NSPOSIXErrorDomain for packaging posix errors, NSOSStatusErrorDomain for packaging Carbon errors, etc, etc.
Is there a standard domain for packaging an HTTP status code as an error?
id ...
1
vote
1answer
129 views
Handling errors/exceptions & logging them in iPhone applications
I wanted to know do we need to log the exceptions/errors in a common file in file system when an iPhone application runs for debugging purpose later point in time? Or this is handled by IOS ...
1
vote
2answers
213 views
How to Determine if Error Occured in this Case (Objective-C)
Hey guys, I have this function:
//retrieves checksum within core data store, returns 0 if a checksum has not been stored
-(double)getStoredChecksum {
NSError *error;
NSFetchRequest ...
1
vote
3answers
799 views
NSError: Does using nil to detect Error actually turn off error reporting?
I got into the habit of coding my error handling this way:
NSError* error = nil;
NSDictionary *attribs = [[NSFileManager defaultManager] removeItemAtPath:fullPath error:&error];
if (error != ...
1
vote
1answer
110 views
How to bubble error object across several methods?
This is more of a C question but here it goes.
I've a method that receives as a parameter the address of a pointer to an NSError object. Now, that method is buried several levels deep in the class ...
1
vote
1answer
325 views
Problem passing NSError back as a return parameter
I am having a problem passing an NSError object back. The first line of code to access the object (in this case, I inserted an NSLog) causes "EXC_BAD_ACCESS".
Is this because I am not explicitly ...
1
vote
1answer
766 views
Printing userInfo of an NSError from Core Data throws EXC_BAD_ALLOC
I'm using this code (from http://stackoverflow.com/questions/1283960/iphone-core-data-unresolved-error-while-saving/1297157#1297157) to print a more detailed description of an NSError object:
- ...
1
vote
1answer
159 views
Does Apple provide localized recovery options for common NSButton title's for NSError's?
Does Apple provide localized strings for common NSButton titles, such as the equivalents to OK, Cancel, Try Again, and Quit?
I'm attempting to create a custom NSError object from one handed to me by ...
1
vote
1answer
167 views
In Objective-C, I'm trying to encapsulate multiple error-able calls and “return” the most useful error
I put "return" in quotes because I don't want to literally return it. I want to do it similar to how you pass a pointer-to-a-pointer for [NSString stringWithContentsOfFile:usedEncoding:error:].
I ...
1
vote
2answers
3k views
NSLog, NSError, bad access
I was doing a rather ordinary addPersistentStore to an NSPersistentStoreCoordinator, and it generated an &error code.
So I went to NSLog it, and got an access error when I did this:
...
1
vote
2answers
1k views
NSError question
I have been creating a peer to peer connection for a new game, that does not use the peer picker. I am however dumbstruck as what to i put in here:
- (void)session:(GKSession *)session ...
0
votes
0answers
62 views
NSXMLParser Error 65 - NSXMLParserSpaceRequiredError
I have a problem with parsing xml files. A have been looking for the answer for a few hours without success so I'm a little bit desperate. Here is the thing:
I download my data from the server. ...
0
votes
3answers
58 views
Getting &error Without Error
For some reason I am getting an error when no error exists when I do a NSURLConnection.
NSLog(@"Sending string to server. ID:11118");
NSData *urlData = [NSURLConnection ...
0
votes
2answers
45 views
Iphone Application terminate due to uncaught exception 'NSInvalidArgumentException'
I have an application in which i use this code for save data in local prefences.
-(IBAction)radio_button:(id)sender{
switch ( ((UIButton*)sender).tag ){
NSUserDefaults *defaults = ...
0
votes
4answers
69 views
NSError EXC_BAD_ACCESS
I need a second pair of eyes on why I'm getting an error when trying to assign the NSError to the one passed into the function:
// Response and Error Objs.
NSURLResponse *response = nil;
NSError ...
0
votes
1answer
62 views
App terminate due to - uncaught exception 'NSGenericException',
I got the below error while fetching some data from sever. While fetching data, i m displaying an custom alert view with activity indicator. Alert is using main thread while data fetching is done by ...
0
votes
0answers
58 views
Is it possible to create a new NSError object from old one and add custom text using one call?
I'm dealing with NSError object and I need to add custom (additional) error descriptions to them. Currently, everytime I need to customize the system error, I'm looping through existing NSError ...
0
votes
0answers
176 views
NSError localizedDescription always returns “Could not connect to the server” when offline
I have a weird problem in my xcode project. I am using NSURLConnection to download data asynchronously. In my connection:didFailWithError: delegate method I try to write error to console. Weird thing ...
0
votes
1answer
40 views
Objective-C NSError and Java Error
I need a little information about NSError in Obj-C and if there is an equivalent of it in Java.I found this class : Java Error, but I'm not really sure it it's the same.Can I use it like in Obj-C as ...
0
votes
1answer
273 views
When I use UIImageWriteToSavedPhotosAlbum I get a weird error
After I call it using any UIImage I receive this error: Error Domain=ALAssetsLibraryErrorDomain Code=-3304 "Failed to encode image for saved photos." UserInfo=0x17de90 {NSLocalizedDescription=Failed ...
0
votes
2answers
49 views
Java Exception and Objective C NSError
Is it the same thing or not and is there equivalent to NSError in Java?
0
votes
2answers
164 views
Cocoa - NSError description coming from nowhere
I have this piece of code :
- (void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response
{
if ([response respondsToSelector:@selector(statusCode)]) {
int ...
0
votes
1answer
50 views
How do I track NSError objects across threads?
I have a set of asynchronous calls being spawned using NSInvocationOperation:
- (void)listRequestQueue:(StoreDataListRequest *)request {
[openListRequests addObject:request];
...
0
votes
1answer
34 views
NSTable loses focus after present:error
I have an NSTableView that lists tags that are stored using Core Data. The default value for a tag is 'untitled' and I need each tag to be unique, so I have a validation routine that traps empty and ...
0
votes
2answers
357 views
iPhone - NSError reference : constants and code
I'm searching some precise doc where I can associate an error number to its constant. Let's say, for example, I'm searching the constant of NSError.code = 102. How may I do to find it ? Searching the ...
0
votes
1answer
255 views
SKRequest didFailWithError
-(void)request:(SKRequest *)request didFailWithError:(NSError *)error
{
}
With in this method one could arrest the error that happened for ex - ("Failed to Connect to iTunes") etc. Now if one ...
0
votes
1answer
362 views
AVAudioPlayer interrupting playback with audioPlayerDecodeErrorDidOccur, with NSOSStatusErrorDomain -50
In very specific, but reproducible cases, I'm getting audioPlayerDecodeErrorDidOccur:error: with the following NSError:
Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be ...
0
votes
2answers
2k views
NSURL Error Handling
my app is supposed to make a request from a server every 10 seconds or so with a specific url, change some attributes in the url, and then show the request in another view called "updateView" or if ...
0
votes
4answers
261 views
Converting Java to Objective-C: Exception Handling
I'm converting a Java library to Objective-C. The Java code uses exceptions flagrantly (to my Objective-C accustomed mind). When converting, should I be throwing Objective-C exceptions (only within ...
0
votes
2answers
484 views
NSString fails, app crashes trying to NSLog the NSError
What it says on the tin. All I want to do is save an NSString to a .txt file in my Documents directory so it can be accessed by the user. This is called in applicationWillTerminate:
NSError* err;
...
0
votes
2answers
245 views
Crash invalidates url for NSPersistentStoreCoordinator
I have a Core Data app that has a bug that causes the app to crash and I have not tracked down its cause yet. One of the results of the crash is that the next time the app is started up it can not ...
0
votes
2answers
1k views
NSURLErrorDomain error -3001
I'm trying to download a file from the internet, but I get the error -3001 back. I've been searching through google but the error doesn't appear on any website, so i have no idea what it means.
Can ...
0
votes
3answers
758 views
EXC_BAD_ACCESS on [error localizedDescription];
This Code trows an EXC_BAD_ACCESS:
NSError* error;
if(![appdelegate.managedObjectContext countForFetchRequest:request error:&error]) {
DLog(@"Failed to save to data store: %@", ...
0
votes
2answers
875 views
How do I know when a page has failed to load in UIWebView as opposed to being “Stopped” by the user?
I have a UIWebView within my application which I'm using to provide web browsing functionality.
I have a button on my toolbar which calls
-(void)stopLoading;
on the UIWebView. The problem with ...