i want to make an tabbed browser for the iphone.. how do i store uiwebviews in an array and open it with an button like in safari?

link|improve this question
feedback

1 Answer

no need to store UIWebViews, all you need to store is the address of the web-site. You can store them in user defaults NSUserDefaults; as for opening then in tabs of UITabBarController you can use:

_controller is your tab bar controller and viewController is the controller which contains UIWebView as a view (viewController.view = yourWebView)
NSMutableArray *array = [NSMutableArray arrayWithArray:_controller.viewControllers];
[array addObject:viewController];
_controller.viewControllers = array;


but if you want to open new pages like safari does you will need to use transformations:
[UIView beginAnimations];
// change coordinates of the view
[UIView commitAnimations];

link|improve this answer
ok i understand that.. but how and where do i put this code in my xcode project? i'm new to xcode and really don't know how to do this.. can you send me an example project with this code to itsfall@gmail.com?? this would be great!! greetz itsfall – ITsFaLL Sep 9 '09 at 10:22
feedback

Your Answer

 
or
required, but never shown