我的初始代码是
[[[show Episodes] lastObject] setDescription:nodeContent];
这会从 Episodes 数组中获取最后一个对象,并尝试使用 nodeContent 设置剧集的描述属性。这不起作用,因为我认为编译器不知道剧集对象的类。
然后我尝试提供演员表
((EpisodeRepresentation *)[[show Episodes] lastObject]).description = nodeContent;
这也不起作用。我也试过不成功
EpisodeRepresentation *rep = [[show Episodes] lastObject];
rep.description = nodeContent;
所有这些方式都使描述为空(nodeContent 绝对不为空,它是一个 NSString)。