我的 WatchKit 中有 2 个接口控制器。第一个称为 InterfaceController,而另一个称为 DetailsForWatch。IC上有一个tableView。它解析来自 Parse 类的数据,并将类中每个条目的数据显示为一行。这工作正常。
我想要做的是将所选行的 PFObject 传递给 DetailsForWatch 中的 PFObject。我对 DFW 的设置是:
。H
@interface DetailsForWatch : WKInterfaceController {
}
@property (nonatomic, retain) IBOutlet WKInterfaceLabel *detailsLabel;
@property (nonatomic, retain) PFObject *finalObject;
@end
.m
- (void)awakeWithContext:(id)context {
[super awakeWithContext:context];
NSString *details = self.finalObject [@"Request"];
[self.detailsLabel setText:details];
NSLog(@"%@", self.finalObject);
// Configure interface objects here.
}
在 IC 中,对于 .h 我有:
@class DetailsForWatch;
@interface InterfaceController : WKInterfaceController {
DetailsForWatch *_theDetails;
}
@property (retain) DetailsForWatch *theDetails;
@end
在 .m 我有:
@synthesize theDetails = _theDetails;
对于 didSelectRowAtIndex,我有:
_theObject = _theObjective[rowIndex];
self.theDetails = [[DetailsForWatch alloc] init];
_theDetails.finalObject = _theObject;
我将 DFW 设置为来自 IC 组的推送选择。当我在 IC 中选择一行时,它会推送一个空白屏幕,并且 NSLog 显示名为 finalObject 的 PFObject 为(null)。我做错了什么,它没有正确传递 PFObject ?