我在 ViewController 中使用 NSManagedObject 作为属性,声明如下:
@property(retain, nonatomic)NSManagedObject *person;
我将获取的内容传播到 UITableView,当用户点击他正在寻找的联系人时,会发生以下情况:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
self.person = [contacts objectAtIndex:indexPath.row];
Contacts 包含获取的结果,操作如下:
NSArray *contactsArray;
NSError *error;
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSManagedObjectContext *context = [(OAuthStarterKitAppDelegate *)[[UIApplication sharedApplication] delegate] managedObjectContext];
NSEntityDescription *entity = [NSEntityDescription
entityForName:@"Contacts" inManagedObjectContext:context];
[fetchRequest setEntity:entity];
testForTrue = [NSPredicate predicateWithFormat:@"SOME CONDITION"];
[fetchRequest setPredicate:testForTrue];
[fetchRequest setFetchLimit:10];
contactsArray = [[NSArray alloc]initWithArray:[context executeFetchRequest:fetchRequest error:&error]];
当用户点击联系人时,self.person 具有该值,但是当我尝试在另一种方法中使用该值时,它为 nil,地址为 0x000000。这仅在 iOS 5 上发生,在 iOS 6 上,人具有所选联系人的值,我可以在其他地方使用。
有任何想法吗?
谢谢。