具有强引用的对象属性变为 null
Posted
技术标签:
【中文标题】具有强引用的对象属性变为 null【英文标题】:Object property with strong reference becomes null 【发布时间】:2013-05-31 08:57:59 【问题描述】:具有强引用的另一个对象(BWMasterViewController
中的dataController
)的属性上设置的数组键变为null
。我不明白为什么。
BWMasterViewController
标题:
#import <UIKit/UIKit.h>
@class BWBirdSightingDataController;
@interface BWMasterViewController : UITableViewController
@end
实现:
#import "BWMasterViewController.h"
#import "BWBirdSightingDataController.h"
#import "Bird.h"
#import "BWWebviewController.h"
@interface BWMasterViewController()
@property (strong, nonatomic) BWBirdSightingDataController *dataController;
@property (copy, nonatomic) NSString *test;
@end
@implementation BWMasterViewController
- (void)awakeFromNib
[super awakeFromNib];
NSLog(@"awake from nib");
self.dataController = [[BWBirdSightingDataController alloc] init];
self.test = @"Test var";
NSLog(@"test: %@", self.test);
Bird *bird = [self.dataController objectInListAtIndex:0];
NSLog(@"bird object: %@", bird);
NSLog(@"bird name: %@", bird.name)
- (void)viewDidLoad
[super viewDidLoad];
NSLog(@"view did load");
NSLog(@"test: %@", self.test);
Bird *bird = [self.dataController objectInListAtIndex:0];
NSLog(@"bird object: %@", bird);
NSLog(@"bird name: %@", bird.name)
// ....
BWBirdSightingDataController
标题:
#import <Foundation/Foundation.h>
@class Bird;
@interface BWBirdSightingDataController : NSObject
- (NSUInteger)countOfList;
- (Bird *)objectInListAtIndex:(NSUInteger)theIndex;
@end
实现:
#import "BWBirdSightingDataController.h"
#import "BWDataController.h"
#import "Bird.h"
@interface BWBirdSightingDataController ()
-(void)initializeDefaultDataList;
@property (nonatomic, copy) NSMutableArray *birds;
@end
@implementation BWBirdSightingDataController
- (id)init
if (self = [super init])
[self initializeDefaultDataList];
return self;
return nil;
- (void)initializeDefaultDataList
BWDataController *dataController = [[BWDataController alloc] init];
NSEntityDescription *birdsEntity = [NSEntityDescription
entityForName:@"Bird"
inManagedObjectContext:dataController.managedObjectContext];
NSFetchRequest *fetchBirds = [[NSFetchRequest alloc] init];
[fetchBirds setEntity:birdsEntity];
NSError *fetchError = nil;
NSArray *birdsObjects = [dataController.managedObjectContext
executeFetchRequest:fetchBirds
error:&fetchError];
self.birds = [birdsObjects mutableCopy];
- (NSUInteger)countOfList
return [self.birds count];
- (Bird *)objectInListAtIndex:(NSUInteger)theIndex
return self.birds[theIndex];
@end
鸟
Bird 是一个基于 CoreData 实体的NSManagedObject
。
标题:
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Bird : NSManagedObject
@property (nonatomic, retain) NSDate * date;
@property (nonatomic, retain) NSString * name;
@property (nonatomic, retain) NSString * location;
@property (nonatomic, retain) NSString * image;
@property (nonatomic, retain) NSString * url;
@end
实现:
#import "Bird.h"
@implementation Bird
@dynamic date;
@dynamic name;
@dynamic location;
@dynamic image;
@dynamic url;
@end
输出
当我运行它时,会输出:
2013-05-31 11:36:47.824 BirdWatching[69565:c07] awake from nib
2013-05-31 11:36:47.834 BirdWatching[69565:c07] test: Test var
2013-05-31 11:36:47.834 BirdWatching[69565:c07] bird object: <Bird: 0x8545ec0> (entity: Bird; id: 0x8545040 <x-coredata://D24A664F-8E8F-4AF0-891C-098C8A7DD860/Bird/p1> ; data: <fault>)
2013-05-31 11:36:47.835 BirdWatching[69565:c07] bird name: Pigeon
2013-05-31 11:36:47.839 BirdWatching[69565:c07] view did load
2013-05-31 11:36:47.840 BirdWatching[69565:c07] test: Test var
2013-05-31 11:36:47.840 BirdWatching[69565:c07] bird object: <Bird: 0x8545ec0> (entity: Bird; id: 0x8545040 <x-coredata://D24A664F-8E8F-4AF0-891C-098C8A7DD860/Bird/p1> ; data: <fault>)
2013-05-31 11:36:47.840 BirdWatching[69565:c07] bird name: (null)
如您所见,在viewDidLoad
函数中,bird.name 已变为空。怎么会?我将该属性声明为强引用。
我在viewDidLoad
中定义self.dataController
时遇到同样的问题,然后在prepareForSegue
中它会为空,我也需要它。
【问题讨论】:
显示您的 BWBirdSightingDataController 代码 添加更多日志记录或使用调试器单步调试您的代码。经常检查self.birds
是否不为零。我怀疑整个数组都失效了。
这真的很奇怪。除了bird
变量,你能打印出self.dataController
吗?在-objectInListAtIndex:
里面,你能打印出self.birds
吗?
@rednaw,啊哈 - 所以这只鸟仍然有效,但它失去了它的名字......所以问题出在你现在向我们展示的代码/定义中。
会不会是托管对象上下文(dataController.managedObjectContext)同时被释放了?托管对象只能存在于上下文中。如果对象的上下文被销毁,那么就会发生这种情况:所有属性都返回 nil。
【参考方案1】:
您使用本地BWDataController *dataController
在initializeDefaultDataList
中创建Bird
对象。 dataController
在此方法结束时自动释放,这可能意味着托管对象上下文 dataController.managedObjectContext
也不再存在。
但是,托管对象只能存在于创建它的上下文中。如果上下文被销毁,那么就会发生这种情况:访问所有属性返回 nil
。
可能的解决方案:
使dataController
成为BWBirdSightingDataController
的强属性,而不是局部变量。
在整个应用程序中使用共享的托管对象上下文。
【讨论】:
好的,很公平。那么如何在我的birds
属性中保留这些Bird
对象?我在想我可以让BWBirdSightingDataController
管理与 Core Data 的通信,在内部保护所需的数据并将其提供给BWMasterViewController
。我该怎么办?
是的,我将dataController
设为一个强大的属性,现在它可以工作了!谢谢!
+1 但请注意,在这种情况下,“在应用程序中使用共享托管对象上下文”意味着应该在主线程上创建 MOC 并与 MOC 交互应该在主线程上。以上是关于具有强引用的对象属性变为 null的主要内容,如果未能解决你的问题,请参考以下文章