views:

179

answers:

1

I have an iphone sdk application and want to tweak it.. as I've had a great idea on how I want my interface to appear.

I'm trying to create several buttons that will open a web page within my application but have failed to do so countless amounts of times now.

(I don't want the button to open a link in safari, I already know how to do this and it's not what I'm trying to achieve)

The application must not shut down in order to operate any links (i.e close down to open the link in safari as stated above.)

MORE INFO-----------------------------------

i already have the application and yes it is working and complete, however a while ago i decided that id like to change the interface on my application, but havnt been successful in doing so.

Currently i am using a webView based app which works perfectly, i have my website and another within the application (using a tab bar with two tabs within it).

Now i would like to completely re-model my app by starting from scratch..

using a uiwebview i want to place several buttons on the uiwebview page and have them as links which will direct my members to different sections of my website when pressed..

I have managed to do this but when the buttons are pressed, my application is closed and the link is then opened in safari, which is not what i want.

I would like the links to open within my application

Any ideas?

+3  A: 

You want to look at UIWebView. There are a number of examples out on the web that should help you get it working.

carson
this is my last resort, ive looked pretty much everywhere.. i didnt just wake up with an idea and then immediately think to just post the question out there for some one to answer..ive been looking for a long time even checked every youtube video available for what im asking but it appears that either nobody has come up with this idea before or its just not possible to do as i havnt managed to find the information ive been looking for but thanks for the attempt..." You want to look at UIWebView. There are a number of examples out on the web that should help you get it working. "
Vinny