我创建了一个RSS阅读器,首先在表视图中显示文章,然后如果单击一篇文章,就会转到View Controller,它有一个WebView控制器来显示该文章的网站。该应用程序基于标签栏应用程序,我想创建另一个具有不同RSS URL的标签。我该怎么办?
这是我的TableViewController.m
的开头#import "TableViewController.h"
#import "ViewController.h"
@interface TableViewController () {
NSXMLParser *parser;
NSMutableArray *feeds;
NSMutableDictionary *item;
NSMutableString *title;
NSMutableString *link;
NSString *element;
}
@end
@implementation TableViewController
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
feeds= [[NSMutableArray alloc] init];
NSURL *url = [NSURL URLWithString:@"MYRSSFEEDURL"];
parser = [[NSXMLParser alloc] initWithContentsOfURL:url];
[parser setDelegate:self];
[parser setShouldResolveExternalEntities:NO];
[parser parse];
}
答案 0 :(得分:0)
Tab Bar Item
拖到新UIViewController的底部Tab Bar Controller
并拖动到新创建的UIViewController Relationship Segue - ViewControllers