我的应用程序的目标是解析一些XML,在tableview中显示xml的一个元素,然后让用户单击该单元格,然后将其推送到新的表视图,其中该元素的其余数据被展示。仅显示列表的第一个表视图工作正常,但由于某种原因,我无法推动新的视图控制器工作。以下是我正在使用的代码。第一个视图控制器显示在表视图中; currentCallType。我希望用户能够点击该表格单元格,然后推送到新的表格视图,在该视图中显示单位,工作站和位置。任何帮助都是极好的!谢谢。
查看第一个tableview的控制器:
#import "ThirdViewController.h"
#import "UnitsXMLParser.h"
#import "DetailViewController"
@implementation ThirdViewController
@synthesize unitsTableView;
@synthesize currentCallType, station, location, units;
XMLParser1 *xmlParser;
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark -
#pragma mark Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[xmlParser units] count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
Units *currentCall = [[xmlParser units] objectAtIndex:indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier];
}
// Set up the cell...
cell.textLabel.text = [currentCall currentCallType];
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 55;
}
#pragma mark -
#pragma mark Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
DetailViewController *detail = [self.storyboard instantiateViewControllerWithIdentifier:@"detail"];
[self.navigationController pushViewController:detail animated:YES];
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
xmlParser = [[XMLParser1 alloc] loadXMLByURL:@"http://localhost:8888/units.xml"];
}
XML分析器:
#import <Foundation/Foundation.h>
#import "UnitsXMLParser.h"
@implementation XMLParser1
@synthesize units = _units;
NSMutableString *currentNodeContent;
NSXMLParser *parser;
Units *currentCall;
bool isStatus;
-(id) loadXMLByURL:(NSString *)urlString
{
_units = [[NSMutableArray alloc] init];
NSURL *url = [NSURL URLWithString:urlString];
NSData *data = [[NSData alloc] initWithContentsOfURL:url];
parser = [[NSXMLParser alloc] initWithData:data];
parser.delegate = self;
[parser parse];
return self;
}
- (void) parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
currentNodeContent = (NSMutableString *) [string stringByReplacingOccurrencesOfString:@"~" withString:@""];
}
- (void) parser:(NSXMLParser *)parser didStartElement:(NSString *)elementname namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
{
if ([elementname isEqualToString:@"station"])
{
currentCall = [Units alloc];
isStatus = YES;
}
}
- (void) parser:(NSXMLParser *)parser didEndElement:(NSString *)elementname namespaceURI: (NSString *)namespaceURI qualifiedName:(NSString *)qName
{
if (isStatus)
{
if ([elementname isEqualToString:@"units"])
{
currentCall.units = currentNodeContent;
}
if ([elementname isEqualToString:@"name"])
{
currentCall.currentCallType = currentNodeContent;
}
if ([elementname isEqualToString:@"stationid"])
{
currentCall.station = currentNodeContent;
}
if ([elementname isEqualToString:@"address"])
{
currentCall.location = currentNodeContent;
}
}
if ([elementname isEqualToString:@"station"])
{
[self.units addObject:currentCall];
currentCall = nil;
currentNodeContent = nil;
}
}
@end
答案 0 :(得分:1)
远景;但您是否已将项目配置为使用 UINavigationController
?除非您从正确的项目模板开始或手动添加 UINavigationController
,否则您的视图控制器将不会包含在UINavigationController中/由其管理。如果导航控制器不支持包含已发布代码的视图控制器, [self.navigationController pushViewController:detail animated:YES]
将不执行任何操作。
此外,除了 UITableViewDelegate
之外,请确保您已连接 UITableViewDataSource
,以便您的代码能够捕获行选择。
我只是问,因为您没有明确说明您已将项目设置为使用 UINavigationController
或确认您已在Interface Builder中连接了委托和数据源。