Here is my predicament: I have a tableview controller that loads a detail view on selection. I have a custom class declared as so in the detail view.
Match *myMatch;
@property (nonatomic, retain) Match *myMatch;
当我从表格中提出看法时,即确定与预选匹配的对应值,如:
Match *match = [[Match alloc] initWithMatchData:[profile.matches objectAtIndex:indexPath.row]];
[detailView setmyMatch: match];
但是,如果我从细节中获取变式的我的材料,那就是无效的。 我认为,我做了一些错误的事情。 沿用了原Match物体的开端。 我没有这样做。 是否需要?