这里的大问题是,我正处于完成我的博客项目的边缘,直到我遇到一个segue问题,我试图在另一个控制器的uiwebview上显示博客网页视图的内容。这是我第一次使用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 PM
看起来我正确地执行了一个segue,因为现在我的页面将变为空白。有人可以确认我传递的参数,我只需要有人看一下并告诉我
答案 0 :(得分:0)
NSIndexPath没有任何名为postLink的成员。我认为你的意思是写item.postLink。
detailViewController.postLink = item.postLink
我希望item是某种类型的'postLink'成员,并且填充了适当的值。