An NSError is a class in Objective-C, NSError object encapsulates richer and more extensible error information than is possible using only an error code or error string.

learn more… | top users | synonyms

0
votes
0answers
13 views

requestAccessToAccountsWithType Returns NSError of “(NULL)”

I am using this code to connect to Facebook. It works the first time. Then I go into my Settings App and revoke the permissions. Then I go back into my app and run this code again. granted returns NO ...
0
votes
2answers
37 views

NSError strange issue - app crashes while trying to access NSError's properties

In the following code NSError instantiates (match is GameCenter's GKMatch): ... NSString * deviceID = appDelegate.deviceID; MessageWithDeviceID message; message.message.messageType = ...
1
vote
1answer
57 views

Proper way of handling reference to NSError

My code looks like this, sometimes app crashes on the last line, when it tries to log the error. What am I doing wrong? BOOL isDir; NSError *error; NSString *downloadPath = [[NSString ...
0
votes
1answer
13 views

Can not create NSError: unrecognized selector

I am trying to create a NSError category to make pre-defined errors based upon status codes. However, any time that I try to create a NSError from my category, I get a +[NSError ...
0
votes
0answers
7 views

Cannot get file to move from my tmp folder, NSError giving Bad_Access?

Getting EXC BAD ACCESS code=2 in the below code and I have no idea why! Sorry to be so vague, I'm kind of new at this but here's the code, please impart your wisdom on me. [fileManager ...
1
vote
0answers
48 views

When to present NSError

I have a general question- what are some guidelines for handling NSError's? For instance, NSJSONSerialization can return an error creating JSON objects or JSON data. I feel like it's (maybe) not ...
0
votes
1answer
42 views

Sending description to NSError

I think I've found a bug on NSError but want to run it passed you guys and see if it's actually just me doing something wrong. I get a crash when sending description to an NSError instance that makes ...
0
votes
2answers
52 views

propagate errors up the call stack - objective c

In a typical layered architecture, how can I effectively communicate errors originating in data access layer to a UIViewContoller? I have following design: UIViewControllers --> datacontroller ...
2
votes
1answer
76 views

Collecting NSXMLDocument warning output

I have the following helper function for transforming XML via XSLT: - (NSXMLDocument *)transform:(NSString *)xml :(NSString *)xslt { NSError *xmlDocErr = nil; NSXMLDocument *transformedXmlDoc ...
0
votes
1answer
85 views

Make Objective-C method return anything

I am using this method below to get data from a URL, but I want to make it return an error if the statusCode is not equal to 200. + (NSData *)getData:(NSString *) url { NSURL *urlNS = [[NSURL ...
0
votes
2answers
22 views

NSError objects with NSFetchedResultsControllers

This is a simple one: I'm currently creating a new NSError object every time I perform a fetch on my NSFetchedResultsController. This occurs across a number of methods, so there are currently nine of ...
0
votes
0answers
29 views

how to NSException get localized NSLocalizedDescription

I got an Exception Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x1fd68a20 {NSErrorFailingURLStringKey=http://mac-mini.local/~user/restcon/auth?username=&password=, ...
0
votes
2answers
79 views

How to deal with NSError in an iphone application? [duplicate]

Is there a good way to deal with NSError in ios development?I was going trough some online references and i found that most of them were using [NSApp presentError] to present the error?? This is ...
0
votes
2answers
84 views

NSError not being populated

Several times before I used the method... NSURLResponse *response; NSError *error; NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error]; ...
0
votes
1answer
41 views

NS_ERROR_XPC_BAD_CONVERT_JS when trying to call an AJAX function

When closing the Thickbox in Wordpress, I'm trying to first add the image selected via the Thickbox to the screen (working), and then run a small AJAX routine to update an option in the database ...
0
votes
3answers
1k views

[__NSArrayM insertObject:atIndex:]: object cannot be nil - how determine where is the error?

I have big project with async event, and sometimes i have error [__NSArrayM insertObject:atIndex:]: object cannot be nil, but I havent idea where is throwing this error.. How can I catch this error? ...
0
votes
1answer
44 views

writeToURL: error handling

The file handling in Cocoa is quite simple, several of the classes handle messages as the following (e.g. NSData) writeToURL:options:error: But the documentation of the error statement is quite ...
0
votes
1answer
44 views

Using NSError the right way with non BOOL returning functions

Looking at the Error Handling Programming Guide, I understand that in cases like the following I must never evaluate the NSError parameter theError unless the return value is NO BOOL success = [myDoc ...
0
votes
0answers
52 views

Calling presentError:modalForWindow in NSDocument multiple times show only first error

i wrote an document based application and i need to manage errors. I call presentError:modalForWindow:delegate:didPresentSelector:contextInfo: of NSDocument when i need to show these errors. That ...
1
vote
3answers
113 views

What does NSError do on its own, if anything?

I'm looking to start putting error catches into my code, and I want to see what NSError objects do for me on their own and what I'd have to add in myself. Looking at this SO question and the Apple ...
1
vote
2answers
114 views

NSError: passing error in method

I'm not sure if this is correct or not: - (void)parseSomething:(id)targetObject error:(NSError **)error { NSError *parserError = nil; [myParser parse:targetObject error:&parserError]; ...
1
vote
3answers
188 views

What does “&error” mean in Objective-C? [duplicate]

Possible Duplicate: why is “error:&error” used here (objective-c) AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device ...
0
votes
0answers
106 views

Parsing error in Objective-C: better NSException or NSError

My iPhone app is currently using a specific model object for handling user information returned by the server. The model object class provides a iniWithJSONdata: method for handling the parsing. ...
0
votes
2answers
52 views

How do I add a NSError check with initWithContentsOfFile when looking for an image?

In my app, the user can save an image to their documents directory. At launch, I grab the image, add a border, and put it into a UIImageview like this.... NSArray *sysPaths = ...
1
vote
1answer
295 views

How to initialize, pass argument, and check error condition using NSError**

Xcode 4.3 I've read the SO questions on NSError**, so I wrote a simple test program that uses a slightly different syntax recommended by Xcode 4.3 (see __autoreleasing below), so I'm not 100% sure if ...
1
vote
1answer
1k views

Bad Access Error when trying to pass error through functions

I am trying to implement some Errorhandling in my class. I don't think I have a full understanding of how Dealing with Errors works, but I noticed that people advised, to declare Errors in functions ...
1
vote
1answer
187 views

Understanding 'potential null dereference' when dealing with NSError

I understand that this may seems a very basic question, but I always thought that explaining (and understanding) basic question is the key to build clean and working code. I have the following ...
2
votes
5answers
348 views

one vs. two completion blocks

I'm using a network kit that uses the twoBlock approach, but I prefer using the oneBlock in my own code. Which makes me confused if the twoBlock approach is better. Somehow I don't see it. Is there ...
2
votes
1answer
5k views

Strange error when dismissing MFMailComposeViewController: error: address doesn't contain a section that points to a section in a object file

I am getting a really weird error MFMailCompseViewController. The error is "error: address doesn't contain a section that points to a section in a object file". The app crashes after ...
1
vote
1answer
2k views

NSException and NSError custom exception/error

I recently started learning Objective-C, and I am working on an iOS app as an exercise, anyway, I want to handle overflow by throwing exception (I come from a Java background), I searched the ...
0
votes
0answers
158 views

NSString stringWithContentsOfURL again

I'm having problems with NSString stringWithContentsOfURL. Here some code: NSError *error; const NSStringEncoding *encoding = [NSString availableStringEncodings]; NSString response = [NSString ...
0
votes
3answers
1k views

How can I get more useful information from NSerror?

I want to get some useful information from NSerror. I print out [error userInfo], show as follow: { NSFilePath = "/Users/apple/Library/Application Support/iPhone ...
0
votes
1answer
134 views

Objective-C passing NSError pointer to NSFileManager within custom method

I have a method that uses ARC and takes an NSError pointer and I pass that into the contentsOfDirectoryAtPath:error: method of NSFileManager like so: + (NSArray *) ...
0
votes
1answer
71 views

how to fix Clang alert in method using double indirection for NSError?

in a project using garbage collection: Clang alerts 'Potential null dereference....' on line assigning *anError. But this look right to me according to: Why does NSError need double indirection? ...
0
votes
1answer
286 views

ios checking for an empty object

I have an error getting passed by reference to some code I found online. The error comes back as an empty object meaning there was no error. if I check for error.code I get a bad access because the ...
1
vote
2answers
138 views

CDMA cell data interruption on iPhone. NSError code?

I have a scenario where a NSURLConnection is in progress. As we all know, CDMA phones (think Verizon, Sprint) can't handle data and phone calls at the same time. Does anyone know what, if any, ...
0
votes
1answer
780 views

NSInvalidArgument error - CGImageRef from CIImage

I'm getting an error on some code that two days ago was running fine. The error is: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFType extent]: ...
0
votes
2answers
113 views

Cocoa enumeration

I'm creating a list of error codes as so enum{ firstErrorCode = 1, secondErrorCode = 2, }; I would like to create an error domain-type concept for a custom error class (subclass of ...
0
votes
1answer
322 views

Creating an NSError Domain

I would like to create a custom error domain for my application. I have an enumerated NSInteger type that covers all possible error codes I can get, my question is how do I associate these with my ...
4
votes
1answer
219 views

NSError to OSStatus

Is it possible to make OSStatus variable from NSError? For example I get NSError with code 513(OSStatus equivalent = -5000) , but to process it in my App i need convert NSError(513) to ...
11
votes
3answers
820 views

Why is `&` (ampersand) put in front of some method parameters?

I'ver wondered, why is it that in front of an NSError, such as below, do we put: &error and not error? E.g. NSArray *result = [managedObjectContext executeFetchRequest:fetchRequest ...
0
votes
0answers
404 views

Accessing localized error message from ASIHTTPrequest calls

I'm using the ASIHTTPRequest to perform some HTTP calls. In a certain case when the network isn't available, I display a dialog with the error from the NSError object returned. My problem occurs ...
0
votes
1answer
176 views

Why is my app crashing when I allocate NSError userInfo to set a NSDictionary?

NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:@"Please, other format selected.", NSLocalizedDescriptionKey, @"This format is not available.", NSLocalizedFailureReasonErrorKey, @"The ...
2
votes
3answers
610 views

How to create an NSInvocation object using a method that takes a pointer to an object as an argument

I would like to create an NSInvocation object using a method that takes a pointer to an NSError object as an argument. An example of this would be the method - - (BOOL)writeToFile:(NSString *)path ...
3
votes
1answer
278 views

Obj-C: NSError in initialiser

Fairly simple question: I have an init method on my class that has the potential to go wrong. If it does, I plan to "return nil", but I would also like to return an error. Is it bad practice to ...
1
vote
3answers
598 views

Code crashes when trying to set a localized description for an NSError

I'm trying to set error message if something is wrong, but I get This class is not key value coding-compliant for the key NSLocalizedDescription Here is the code I use ...
3
votes
2answers
402 views

NSError *error; vs NSError *error = nil;

I developed an ios app that had a: NSError *error; instead of NSError *error = nil; It worked fine in while I was debugging in the simulator and debugging on the device while connected. The ...
2
votes
2answers
1k views

Managing list of error codes for NSError in objective c

In Cocoa and Objective C the favorite method for managing error seems to be using an NSError * object, to construct an error object however, we need to call the following method + ...
1
vote
3answers
153 views

Syntax of ** in objective C

Simple question. What is the meaning of the double asterisk in the interface below? It's not an NSError pointer, but what? - (BOOL)checkResourceIsReachableAndReturnError:(NSError **)error
0
votes
1answer
261 views

Print NSError in try catch block

I was curious if anyone knew how to use a try catch in objective c in order to print out a possible NSError received from a synchronousRequest. The error that I am receiving is due to a non valid ...

1 2