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.