For reasons unknown my app shuts down upon pressing a UIButton in the simulator. I have dynamically added my UIView, if that is of relevance. No tracelog or debug information just a rush exit...

This is the simple code (.m-file):

- (IBAction) testButtonPressed: (id) sender{
    NSLog (@"Testbutton pressed.");
}

From the header file:

- (IBAction) testButtonPressed: (id) sender;

Pretty basic stuff, but for some reason the app terminates. Help!

EDIT The program crashes immediately when I either tap in a textfield, push a button or in any other way interact with the user interface. From my subview:

LoginViewController *myLoginViewController = [[LoginViewController alloc] initWithNibName:@"LoginView" bundle:nil];
[[UIApplication sharedApplication].keyWindow addSubview:myLoginViewController.view];
[[UIApplication sharedApplication].keyWindow makeKeyAndVisible];
link|improve this question

77% accept rate
How did you add your view? Did you check if your program executes testButtonPressed? How do you create/add your button and set its action&target? – Vladimir Jun 16 '10 at 12:22
3  
You're getting an exception somewhere in your code. Run the app using the debugger and try to figure out which exception is thrown. – Philippe Leybaert Jun 16 '10 at 12:23
I can see from my debugger that it spews out: Program received signal: “EXC_BAD_ACCESS”. – maralbjo Jun 16 '10 at 16:34
You need to use the debugger and determine where that happens, what line, and examine it to find out why. It's hard to guess what's wrong without seeing that line of code. – progrmr Jun 16 '10 at 17:45
Have you tried returning a nil value? – fcsc Mar 21 at 3:07
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.