我有一个我正在解析的xml文件。
NSURL *url = [NSURL URLWithString:@"url.xml"];
NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60];
self.downloadData = [[NSMutableData alloc] initWithLength:0];
self.connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];
我有所有的连接工作,我认为我解析工作,但我有问题,不知道我做错了什么。
我的didStartElement:
-(void) parser:(NSXMLParser *) parser didStartElement:(NSString *) elementName namespaceURI:(NSString *) namespaceURI qualifiedName:(NSString *) qName attributes:(NSDictionary *) attributeDict {
if ([elementName isEqualToString:kimgurl])
{
elementFound = YES;
}
}
foundCharacter:
-(void)parser:(NSXMLParser *) parser foundCharacters:(NSString *)string {
if (elementFound == YES) {
if(!currentValue)
{
currentValue = [[NSMutableString alloc] init];
}
[currentValue appendString: string];
}
}
然后是didEndElement:
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName {
if (elementFound) {
if ([elementName isEqualToString:kimgurl]) {
NSLog(@"imgurl: %@", currentValue);
imageItems.imageURL = currentValue;
NSLog(@"elname: %@", elementName);
NSLog(@"img: %@", kimgurl);
[currentValue setString:@""];
NSLog(@"imageitem: %@", imageItems.imageURL);
}
}
}
我有NSLogs因为imageItems.imageURL为null。这是一个类文件。
ImageItems.h
@interface ImageItems : NSObject {
//parsed data
NSString *imageURL;
}
@property (nonatomic, retain) NSString *imageURL;
@end
ImageItems.m
#import "ImageItems.h"
@implementation ImageItems
@synthesize imageURL;
-(void)dealloc
{
[imageURL release];
[super dealloc];
}
@end
正如您可以通过我的代码告诉我,我是Objective-c的新手。
currentValue具有我正在寻找的值。为什么imageItems为null?我错过了什么?
答案 0 :(得分:0)
我没有在代码中的任何地方看到“imageItems”的分配。您可能需要在某个时刻将其分配给ImageItems的实例。也许使用self.imageItems = [[[ImageItems alloc] init] autorelease]
或imageItems = [[ImageItems alloc] init];
?