我正在尝试制作标签浏览器,就像使用标签的safari或chrome一样。 当用户打开新网址时,会将webview添加到数组中。当用户点击按钮然后openLoadedWebview:将调用并删除原始webview并从数组中打开加载的webview。
但它没有发生。工作的是: webview removefromsuperview的作品。 wv成功地加入了self.view。索引号 的问题: 新添加的wv与具有相同网址的webview相同。
任何更好的想法或方法......我是全新的......
mainViewController.h
@interface mainViewController : UIViewController <UITextFieldDelegate, UIWebViewDelegate>
{
UIWebView *webView;
UIWebView *wv;
}
@property (nonatomic, strong) NSMutableArray *array;
mainViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
webView = [[UIWebView alloc]init];
webView.frame = CGRectMake(10, 130, 300, 400);
webView.delegate = self;
[self.view addSubview:webView];
}
-(BOOL)textFieldShouldReturn:(UITextField *)textField {
textField.text = [self repairURL:textField.text];
NSURL *url = [[NSURL alloc] initWithString:textField.text];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
[webView loadRequest:request];
[array addObject:webView];
return true;
}
-(void)openLoadedWebview:(NSString *)pageLabel
if ([cell.label.text isEqualToString:@"Trending"]) {
NSLog(@"Selected Cell: %@", pageLabel);
NSLog(@"number of objects %d", [array count]);
// wv = [[UIWebView alloc]init];
wv = [array objectAtIndex:0];
wv.frame = CGRectMake(10, 100, 300, 400);
wv.delegate = self;
[self.view addSubview:wv];
}
else if ([cell.label.text isEqualToString:@"Rec"]) {
wv = [array objectAtIndex:1];
wv.frame = CGRectMake(10, 100, 300, 400);
wv.delegate = self;
[self.view addSubview:wv];
}
[webView removeFromSuperview];
}
答案 0 :(得分:3)
您可以使用以下方法之一: https://github.com/graetzer/SGTabs https://github.com/xxhp/BrowserTabViewDemo
我认为这是你想要实现的目标:https://github.com/fictorial/BHTabBar