菜鸟教程小白 发表于 2022-12-12 18:43:44

iphone - 试图将 NSManagedObject 保存在 appDelegate 中


                                            <p><p>当我尝试在委托(delegate)中保存 NSManageObject 时遇到很多麻烦,以及尝试读取对象时遇到的最严重问题。
我的代表是这样的:</p>

<pre><code>@class ViewController;
@class RootViewController;

@interface AppDelegate : UIResponder &lt;UIApplicationDelegate&gt;
{
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
</code></pre>

<p>完整的set和get方法如下:</p>

<pre><code>- (void) setCar:(Garage *)Car
{
    car = Car;
}
- (void) setTrip:(Trips *)Trip
{
    trip = Trip;
}
- (Trips *) gettrip
{
    return trip;
}
- (Garage *) getcar
{
    return car;
}
</code></pre>

<p>在我做的第一个 View 中:</p>

<pre><code>AppDelegate *appDelegate = [ delegate];
trip = (Trips *);
;
</code></pre>

<p>似乎工作正常,即使我执行 NSLog(@"%@", ); ,它向我展示了没有问题的对象。但是当我尝试在其他 View 中使用 读取相同的行程时,根本不起作用,实际上使用 NSLog 时,它说对象是 Garage 类型而不是 Trips。</p>

<p>我不知道我做错了什么。帮助。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您是否确保在创建项目后保存上下文?如果您不保存它,那么我认为您的新实体不会被正确保存。在代码中,您只是在上下文中创建对象,但您必须保存上下文以使其持久:</p>

<pre><code>NSError *error = nil;
if(!){
//Handle error
}
</code></pre>

<p>我希望这会有所帮助!</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 试图将 NSManagedObject 保存在 appDelegate 中,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8732705/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8732705/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 试图将 NSManagedObject 保存在 appDelegate 中