Kerberos
Kerberos

Reputation: 4166

UIStoryboardSegue and WebView

I have a storyboard with one ViewController and four UIStoryboardSegue. The navigation works perfectly but if I want include a webview into my UIStoryboardSegue, how can I do? I can't include a viewdidload because it isn't a ViewController.

Upvotes: 0

Views: 205

Answers (1)

Omar Abdelhafith
Omar Abdelhafith

Reputation: 21221

You dont segue directly to a webview, you segue to a viewcontroller that contains a web view

so, create a viewcontroller and add a uiwebview to it

Upvotes: 1

Related Questions