Joseph
Joseph

Reputation: 3

XCode IBAction and IBOutlets errors

I'm having a bit trouble with my app and its really bothering me I was wondering if anyone could help me with IBOulets actions.

I only see action and nothing else, it won't let me change it.

Error update

any way to fix this issue. Thanks for any help

Upvotes: 0

Views: 77

Answers (1)

tmiedema
tmiedema

Reputation: 186

If you drag your outlet between the @implementation UIViewControllerName and the @end (bottom section of the .m file) you create a IBAction (For example for button clicks)

If you drag your outlet between the @interface UIViewControllerName() and the @end before the @implementation, you create a IBOutlet. You can create it in the .h file and in the .m file. If there is no @interface in the .m file, you can create it. Add the following above the @implementation UIViewControllerName:

@interface UIViewControllerName ()

// HERE YOU CAN DRAG YOUR IBOutlets

@end 

// Here begins the viewcontrollers implementation
@implementation UIViewControllerName

- (void) viewDidLoad {
..... etc. etc..

Upvotes: 2

Related Questions