NSManageObjectをデリゲートに保存しようとすると多くの問題があり、オブジェクトを読み込もうとすると最悪の問題が発生します。私が行うとき、最初のビューでNSManagedObjectをappDelegateに保存しようとしています
- (void) setCar:(Garage *)Car
{
car = Car;
}
- (void) setTrip:(Trips *)Trip
{
trip = Trip;
}
- (Trips *) gettrip
{
return trip;
}
- (Garage *) getcar
{
return car;
}
:
@class ViewController;
@class RootViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
{
NSManagedObjectModel *managedObjectModel;
NSManagedObjectContext *managedObjectContext;
NSPersistentStoreCoordinator *persistentStoreCoordinator;
Trips *trip;
Garage *car;
}
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *viewController;
@property (strong, nonatomic) RootViewController *rootviewcontroller;
@property (nonatomic, retain, readonly) NSManagedObjectModel *managedObjectModel;
@property (nonatomic, retain, readonly) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, retain, readonly) NSPersistentStoreCoordinator *persistentStoreCoordinator;
@property (nonatomic, retain) Trips *trip;
@property (nonatomic, retain) Garage *car;
- (NSString *)applicationDocumentsDirectory;
- (void) setCar:(Garage *)Car;
- (void) setTrip:(Trips *)Trip;
- (Trips *) gettrip;
- (Garage *) getcar;
@end
設定および取得するための完全な方法は、このようなものです: 私の代理人は、このようなものである
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
trip = (Trips *)[NSEntityDescription insertNewObjectForEntityForName:@"Trips" inManagedObjectContext:context];
[appDelegate setTrip:trip];
がいるようです私がNSLog(@ "%@"、[appDelegate gettrip])をしてもOKです。それは私に問題のないオブジェクトを示しています。しかし、他のビューで[appDelegate gettrip]を使って同じ旅行を読むと、実際にはNSLogでは、Tripsの代わりにGarageタイプのオブジェクトが表示されます。
私は何が間違っているのか分かりません。助けて。
' - [NSEntityDescription insetNewObjectForEntityForName:inManagedObjectContext:]'は 'id'を返します。したがって、返すオブジェクトをキャストする必要はありません。 –
なぜrigmaroleのメソッドを実装し、旅行と車のプロパティのメンバー変数を宣言するのですか?それは混乱し、問題の原因となる可能性があります。オブジェクトをプロパティに設定するだけで、すべてがあなたのために処理されます: 'appDelegate.trip = trip'と' appDelegate.car = car'。 – Jeremy
ありがとうございましたJeremy私はあなたが言ったし、それは良いですが、それは私の問題はNSManagedObjectContextであるように思えます、私はデータを保存しているので、[コンテキストリセット]を追加するyを保存することができますが、代議員。私は[文脈のやり直し]でも試してみるが、うまくいきません。変更を保存するか、出張先を代理人に保存します。私は両方をすることはできません。 –