1

iOS 開発は初めてです。xml データを配列に解析する必要があります。チュートリアルを試しましたが、「 hrms.atrity.info/api/people」XML url で編集するとデータが取得されません。パーサー デリゲートが動作していません。上記のリンクで実行します。これが私のコーディングです。「image.apple.com/main/rss/hotnews/hotnews.rss」で動作します。このプローブを修正する方法、

- (void)viewDidLoad
{
    [super viewDidLoad];
    feeds = [[NSMutableArray alloc] init];
    NSURL *url = [NSURL URLWithString:@"http://hrms.atrity.info/api/people"];//NOt Working
    NSURL *url = [NSURL
                  URLWithString:@"http://image.apple.com/main/rss/hotnews/hotnews.rss"];//This Works
    xmlParser = [[NSXMLParser alloc] initWithContentsOfURL:url];
    [xmlParser setDelegate:self];
    [xmlParser setShouldResolveExternalEntities:NO];
    [xmlParser parse];
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
#pragma mark - Table View

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:
(NSInteger)section
{
    return feeds.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath

{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"
                                                            forIndexPath:indexPath];
    cell.textLabel.text = [[feeds objectAtIndex:indexPath.row] objectForKey: @"FirstName"];
    return cell;
}

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName
  namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:
(NSDictionary *)attributeDict
{
    element = elementName;
    if ([element isEqualToString:@"Users"])
    {
        item    = [[NSMutableDictionary alloc] init];
        title   = [[NSMutableString alloc] init];
        link    = [[NSMutableString alloc] init];
    }
}
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName
  namespaceURI:
(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
    if ([elementName isEqualToString:@"Users"])
    {
        [item setObject:title forKey:@"FirstName"];
        [item setObject:link forKey:@"LastName"];
        [feeds addObject:[item copy]];
        NSLog(@"%@",feeds);
    }
}
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
    if ([element isEqualToString:@"FirstName"])
    {
        [title appendString:string];
    }
    else if ([element isEqualToString:@"LastName"])
    {
        [link appendString:string];
    }
}
- (void)parserDidEndDocument:(NSXMLParser *)parser
{
    [self.tableView reloadData];
}

前もって感謝します。

4

1 に答える 1