I'm sure this is going to sound very weird, but I'll ask anyway. I have made multiple working applications for the iPhone, but I have to add everything to the original view controller. If I don't do so, the app crashes. Here is my example:
In the view controller:
- (IBAction) someAction: (id) sender {
NSLog(@"lajkrbgl");
}
This works just fine. But, if I do the "Add File" and I choose "Objective-C Class", and put the same code in, the app just crashes whenever I press the button. How can I add more objects and have them function like they do for OS X?
EDIT: Below are the steps I took to make the new object. These steps worked for me when making an OS X application.
- I right clicked on the "Classes" folder in Xcode.
- I selected "Add > New File".
- I selected "Objective-C Class" and "NSObject".
- I made an action, "- (IBAction) someAction: (id) sender;"
- In Interface Builder, I connected the action to a UIButton, and used "Touch Up Inside".
- I clicked the "Build and Run" button.
After that, I clicked the button, and the application quit (almost as if i clicked the Home button). I did not get any errors. I then decided that it was because I didn't put the code in for the action, so I did that next.
- (IBAction) someAction: (id) sender; {
NSLog(@"lajkrbl");
}
Even after this, it crashed in the exact same way, and without an error message. Can anybody see what I did wrong?
EDIT2: I just got Xcode 4 running, and when I clicked the button, it told me that this code is giving me the problem (I put "**" before the line that had the green line).
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
**int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}
How in the world did that go wrong? That is created by Xcode when I make projects!