Perform segue with Identifier UIWebView blog, how to link?

159 views Asked by At

Big problem here guys, I'm on the verge of finishing my blog project until I came across a segue issue, I'm trying to display the contents of a blogs web view on a uiwebview in another controller. This is my first time working with MediaRSS and AFNetworking. I have been able to parse the contents before, but am having no luck this time around. All help is greatly appreciated. I keep getting NSIndexPath is not a member of 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
    }
  }
}

UPDATE 9:17PM

Looks like im performing a segue properly, because now my page will go to a blank. Can someone please confirm the parameters I am passing in, I just need someone to look and tell me please

1

There are 1 answers

10
Abdullah On

NSIndexPath does not have any member named postLink. I think you mean to write item.postLink.

detailViewController.postLink = item.postLink

I hope item is of some type that has 'postLink' member and it is populated with appropriate value.