0
votes
1answer
46 views

How to subclass NSException and use in a better way? [duplicate]

I would like to subclass NSException and use it in my app for the application specific errors or exceptions. Is it right way to do so? If YES, how to do it in a better way. If NO, why it is not the ...
-2
votes
0answers
70 views

How to solve SIGSEGV crash

I have got the following crash log from an user's device. How can I debug this? Incident Identifier: 603A7384-2B93-4489-91D3-D0AB86369FCB CrashReporter Key: ...
0
votes
2answers
51 views

Unexpected exception with NSInvocation

Following code throws an exception. vcClass is a Class object (inheritor from UIViewController). Self contains my implementation of viewWillAppear: SEL viewWillAppearSEL = ...
0
votes
1answer
126 views

Objective-C exception handling

I'm trying to figure out how exception handling works in Objective-C. So I'm forcing an exception by performing a selector (boom) which does not exist. When I run it, the application crushes, the ...
-3
votes
1answer
55 views

NSURL image from URL iPhone

I'm getting error while getting image from url for some images, and again for other images not. NSURL* imageURL = [[API sharedInstance] urlForImageWithName:[NSString stringWithFormat:@"%@", [photo ...
1
vote
1answer
79 views

How to catch EXC_BAD_ACCESS (code=1, address=0x00XXXXXX)?

I'm trying to log all the crashes that are occurring in my app. I've written a signalHandler and an exceptionHandler. I'm registering the signalHandler for all the signals that are defined in ...
-2
votes
1answer
37 views

message sent to deallocated instance for MyClass [closed]

I am recieving this message from compiler -[MyClass performSelector:withObject:withObject:]: message sent to deallocated instance 0x821bf30 It is not taking me too any error line. How can i get the ...
1
vote
1answer
50 views

iOS - “This class is not key value coding-compliant” when using associations?

I have the following classes declared in my iOS application... @interface UserRegistrationRequest : BaseServiceRequest @property (nonatomic, retain) NSString *username; @property (nonatomic, retain) ...
14
votes
5answers
361 views

Under what conditions might instancesRespondToSelector: return true, but performSelector: throw an exception

I have code distributed in a library which looks like this: if ([[NSString class] instancesRespondToSelector: @selector(JSONValue)]) { NSString *jsonString = [[[NSString alloc] initWithData: ...
3
votes
2answers
120 views

NSMutableArray removeAllObjects beyond bounds exception

I have an NSMutableArray object called logBuffer, which holds log information and dumps it in a file every N lines. When that happens, I remove all its entries, with [logBuffer removeAllObjects] ...
1
vote
0answers
49 views

Dissociating NSPasteboardItem from pasteboard

What I am trying to do on a high level is store the current data that is on the pasteboard (data of any type) using this code, which I believe to be correct: - (NSArray *)readFromPasteBoard { ...
1
vote
2answers
178 views

EXC_BAD_ACCESS on iOS in system libraries

I'm having an EXC_BAD_ACCESS exception in an iOS game made in Xcode. It happens on the Simulator and on real devices. It's always at the same part in the game, but does not always happen. It's cryptic ...
0
votes
1answer
81 views

Auto Layout Constraints Throwing Exception

I am using auto layouts on fields I am loading into table view cells. For each cell I clear all subviews out of the contentView and load my own views based on the type of field I need. Most cells ...
0
votes
1answer
91 views

Catching and printing info from exception from libc++abi.dylib: terminate… in Objective-C

Is it possible to extract any information from the following: libc++abi.dylib: terminate called throwing an exception I get this exception when i try to run some C++ parser on a string and wonder ...
1
vote
2answers
136 views

What compile options of clang change their default between Objective C and Objective C++?

I was reading the clang documentation on reference counting, which says that “ By default in Objective-C, ARC is not exception-safe”. It proceeds to say: A program may be compiled with the option ...
0
votes
1answer
58 views

unrecognized selector sent to instance… Using segues to pass a string to another view controller

I am trying to pass a link to a custom controller, (GMWebView, a subclass of UIViewController with a UIWebView in it) and I get this error: 2013-03-05 20:34:37.930 viei_A6[3233:c07] ...
3
votes
2answers
296 views

How do I get exception details in XCode 4.6?

I used to get exception details from apps running in the simulator like so: po $eax Ever since I upgraded to XCode 4.6 it's stopped working; I always get this error: error: warning: couldn't get ...
4
votes
2answers
103 views

NSMutableArray removeLastObject Exception

According to the NSMutableArray documentation: removeLastObject raises an NSRangeException if there are no objects in the array. For some reason, I seem to be able to call this method on an ...
0
votes
0answers
27 views

NSInvalidArgumentException coming on modal view

Some time getting given below exception some times on my tester device but not always. I am not understanding why the app crashes some time but not always and why it crashe some time. I am collection ...
0
votes
1answer
73 views

What are objective c exceptions useful for?

I've read many articles about Objective-C exceptions, and I can't figure out what they are useful for. They're use is discouraged when the error is recoverable (because of many leak-related issues). ...
1
vote
1answer
74 views

Is it a good practice to subclass from NSException for app-specific exceptions?

Is it a good practice to subclass from NSException for app-specific exceptions? That way everything is centralized one class for easier management. e.g. @interface AppException : NSException + ...
0
votes
1answer
190 views

Unrecognized selector sent to instance

Not too sure how to debug this. 2013-01-24 20:36:18.448 SlideMenu[2069:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[initViewController ...
0
votes
2answers
106 views

Can I catch an exception and restart my app?

When an exception is thrown inside a method in my app, I want the app to restart. How can I get this functionality? Can I use a try-catch block for that, and how?
0
votes
2answers
97 views

Cannot access my NSArray with literal integer but works dynamically

I can't access to the NSArray data with literal integer, it throws me some exceptions, index bouds (0 , 0) but actually that's wrong, because if I loop it dynamically it works... My code: for ...
0
votes
1answer
382 views

Calling a asp.net webservice from objective c to return data in JSON format with parameters

<ServiceContract()> _ Public Interface IGetEmployees <OperationContract()> _ <WebInvoke(Method:="GET", ResponseFormat:=WebMessageFormat.Json,BodyStyle:=WebMessageBodyStyle.Wrapped, ...
0
votes
1answer
47 views

Error on loading NSUserDefaults for NSTextField

I have a bunch of user defaults which I save and load on applicationWillTerminate/awakeFromNib. See below. The objects are checkboxes (NSButton), Sliders (NSSlider) and one textfield (NSTextfield). ...
0
votes
1answer
96 views

UIAlertView throwing exception NSInternalInconsistencyException of UIAlertButton

I have been trying hard to figure out why the error is happening with such simple code: UIAlertView *alertDialog; alertDialog = [[UIAlertView alloc] initWithTitle:@"Alert button ...
0
votes
2answers
172 views

Adding helpshift to an application caused UIApplicationInvalidInterfaceOrientation exception

I have recently been trying to play with helpshift however I have found that it is causing an exception. The exception is saying that I have autorotate returning yes however I am not implementing ...
4
votes
5answers
97 views

How to find out whether input is number or text in objective-c?

I've tried to search, but I think my google is skill is not good enough, so I'm asking a help from people. I'm scanning through a string and taking each element. I need to find out whether it's number ...
3
votes
2answers
174 views

Can objective-C or Objective C++ handle C++ exceptions?

I have a C++ library for Network communication that I need to port for Mac, previously this library was used on Windows C++ app. The flow of the C++ Network Lib is based on Exceptions in case of ...
0
votes
1answer
80 views

NSInternalInconsistencyException - nul class for object in autorelease pool

As many should know now, I am new to Objective-C, and I need some help to complete this project. I am getting the error NSInternalInconsistencyException - nul class for object in autorelease pool. ...
5
votes
2answers
242 views

Why does NSOperation example code uses @try & @catch

In Apple's Concurrency Programming Guide the NSOperation subclass examples (both non-concurrent and concurrent varieties) use exception handling and I'm wondering why they are encouraging this style ...
0
votes
1answer
85 views

IBAction connected to two custom buttons crashes the app

I have two custom buttons with same IBAction. It is connected properly via connections inspector. The xib is loaded to a view on another xib which is added as shown below OnBoardView *onBoardObj = ...
0
votes
3answers
109 views

Objective-C How to get the line number where exception was thrown

I´m using this in a try - catch structure to get informed in which method the exception was thrown: NSLog(@"%@", NSStringFromSelector(_cmd)); I wonder if there is a way in Xcode 4 also to get the ...
0
votes
1answer
83 views

Can't change UILabel text in method because of SIGABRT exception.What's wrong?

I' m creating a custom UITableViewCell view. I have a method for tableviewcell and I have created UILabel memberLabel programmatically: (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
1answer
42 views

Can't call a method which adds a button on UIToolbar

I have a following method: -(void)addReceiverButton:(NSInteger)tagId withTitle:(NSString *)title { UIButton *button = receiverButton; self.receiverButton = nil; button.tag = tagId; [button ...
1
vote
1answer
722 views

Objective c class extension header - New in xcode

I was trying to use the objective c class extension header (only the .h) template that is new in Xcode. I dont know how to. Well i did File - > New File - > objective c class extension header and gave ...
0
votes
1answer
113 views

MQMapView setRegion: causes app to crash

I'm trying to center my mapView on the user's location, but an exception is thrown that's caught by the AppDelegate before the mapView or view controller are even loaded. mapView is an MQMapView ...
1
vote
2answers
132 views

Why use Try/Catch instead of testing for an NSError

Sometimes you see a piece of iOS - Objective-C code use a Try/Catch structure. For example this example from: http://docs.xrtml.org/2-1-0/pubsub/ios/ortcclient.html - (void)viewDidLoad { [super ...
0
votes
1answer
169 views

UIDocumentInteractionController crashes caught by Exception Breakpoint

I am using the UIDocumentInteractionController to preview pdf files. I display the controller as follows: self.docInteractionController = [UIDocumentInteractionController ...
2
votes
1answer
303 views

App Crashing before view is loaded iOS > 6

My iOS app runs on iOS 5 and iOS 6, but is focused on features from 6. I recently attempted to test my app in the iOS 5.1 Simulator (Base SDK is 5.0), and it seemed to work fine until I tapped on a ...
1
vote
3answers
953 views

Programmatically call a segue cause NSInvalidArgumentException, reason: 'UILabel length' unrecognized selector

I am trying to do a conditional segue. But I get: Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UILabel length]: unrecognized selector sent to instance ...
0
votes
0answers
72 views

Subclassing NSException not working

I have a very simple unit test: - (void)testInvalidHypotenuseX { @try { [[SAHypotenuse alloc] initWithX:-3.0f Y:4.0f]; STFail(@"Previous statement should of thrown an exception"); ...
1
vote
1answer
299 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 ...
2
votes
1answer
112 views

C++ exception not caught in XCode iOS project

I created a C++ library. I am using it in an iOS application. I thought of handling exceptions in C++ library and in order to test this I created a test scheme and called the c++ function from it. In ...
0
votes
2answers
40 views

Handling an Exception At Runtime?

In my iPhone app, I need to get some values from an array like so: string1 = [array objectAtIndex:0]; string2 = [array objectAtIndex:1]; However, sometimes, the object won't exist in the array ...
0
votes
1answer
347 views

Exception SIGSTOP

I am new to XCode and Objective-C. I have this exception poppin' up when I let the app run in the simulator. On the iPad it works fine. When the AVaudioPlayer is allocated I have a stop with the ...
1
vote
1answer
89 views

Handling UITableView or NSArray exceptions?

I'm trying to understand exceptions a little more. I've installed in my AppDelegate an uncaught exception handler: // in applicationDidFinishLaunching: ...
1
vote
1answer
46 views

How can I install NSExceptionHandlers automatically on NSOperationQueues?

long time lurker, first time poster. I'm writing a cocoa app that makes heavy use of NSOperationQueues to manage background tasks. This app is a rewrite of a much older app that used manually managed ...
0
votes
0answers
630 views

CFNetwork internal error with NSRunLoopCommonsMode

I use a NSURLConnection like that : connection_ = [[NSURLConnection alloc] initWithRequest:[self request] delegate:self startImmediately:NO]; [connection_ scheduleInRunLoop:[NSRunLoop currentRunLoop] ...

1 2 3 4