I have an entity 'USer' and one attribute 'name'. I am trying to add one name to the entity 'User' using this code which is used in FirstViewController.m file:

- (IBAction)addUser:(id)sender {
    User *user = (User *)[NSEntityDescription insertNewObjectForEntityForName:@"User" inManagedObjectContext:managedObjectContext];

    [user setName:@"Bhagwan"];
    NSError *error = nil;
    if (![managedObjectContext save:&error]) {
        // Handle the error.
    }
}

But it is showing an error msg:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController addUser:]: unrecognized selector sent to instance 0x4d38950'

how to solve this? Please help!!

EDIT:

#import <UIKit/UIKit.h>
#import "FirstViewController.h"
#import <CoreData/CoreData.h>

@interface CoreDataTry2AppDelegate : NSObject <UIApplicationDelegate> {

    UIViewController *_first; } @property (nonatomic, retain) IBOutlet UIViewController *first;

@property (nonatomic, retain) IBOutlet UIWindow *window;

@property (nonatomic, retain, readonly) NSManagedObjectContext
*managedObjectContext; @property (nonatomic, retain, readonly) NSManagedObjectModel
*managedObjectModel; @property (nonatomic, retain, readonly) NSPersistentStoreCoordinator
*persistentStoreCoordinator;

- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;

@end

This is the App delegate file.

link|improve this question

feedback

1 Answer

The problem you are experiencing lies outside of the showed code. You are likely sending the addUser: message to a different object (one that does not implement it), or the object that implements the method is already deallocated (and it's memory reused for a different kind of object)

The button you are mentioning seems to have a UIViewController set as it's target and the addUser: selector as action. But UIViewController does not have a addUser: method you get an exception.

Make sure, that you connect the action of the button to an object that really implements an addUser: method.

link|improve this answer
I have a UIView class 'FirstViewController' in which I am using a round rect button and this button is connected to 'addUser' method. – Bhagwan Dass Swami Jul 8 '11 at 9:19
i added the app delegate file to the question. first is the outlet as created by connecting the login controller in mainview.xib – Bhagwan Dass Swami Jul 8 '11 at 9:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.