0

大问题,伙计们,我即将完成我的博客项目,直到遇到一个 segue 问题,我试图在另一个控制器的 uiwebview 上显示博客 Web 视图的内容。这是我第一次使用 MediaRSS 和 AFNetworking。我以前能够解析内容,但这次没有运气。非常感谢所有帮助。我不断收到 NSIndexPath 不是 PostLink 的成员

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if segue.identifier == "viewpost" {
    let indexPath = tableView.indexPathForSelectedRow()
    let item = items[indexPath!.row]
    let detailViewController = segue.destinationViewController as PostViewController
    detailViewController.postLink = indexPath.postLink
    }
  }
}

更新晚上 9 点 17 分

看起来我正在正确执行 segue,因为现在我的页面将变为空白。有人可以确认我传入的参数吗,我只需要有人看看并告诉我

4

1 回答 1

0

NSIndexPath 没有任何名为 postLink 的成员。我想你的意思是写 item.postLink。

detailViewController.postLink = item.postLink

我希望 item 是具有“postLink”成员的某种类型,并且填充了适当的值。

于 2015-04-16T04:56:03.710 回答