I am trying to make a back button in my navigation bar because i already have a tab bar at the bottom of the screen.
my layout is this:
tab bar[
navigation bar {
webview ()
}
]
essentially. i need to programmatically add a back button and cannot seem to figure out how. i know that there is a goBack method but am not very familiar with how to implement this.
I already have a button which pulls up ana action sheet with several options but how would i go about having that use the goBack method?
as I understand I can also use something like
if (mywebview canGoBack) {
[mywebview goBack]
}
but I'm not sure how to make an action sheet button do this.
any help?