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 then use NSError?
feedback
|
|
Well, what I usually do is have my methods that could error-out at runtime take a reference to a Example:
We can then use the method like this. Don't even bother to inspect the error object unless the method returns nil:
We were able to access the error's The best place for more information is Apple's documentation. It really is good. There is also a nice, simple tutorial on Cocoa Is My Girlfriend. | |||||||||||
feedback
|
|
Great answer Alex. One potential issue is the NULL dereference. Apple's reference on Creating and Returning NSError objects
| |||
|
feedback
|
|
Please refer following tutorial i hope it will helpful for you but prior you have to read documentation of NSError | ||||
|
feedback
|