次のリンクから XML データを解析したいと思います。
http://weather.yahooapis.com/forecastrss?w=12776781&u=f
次の行からテキスト、コード、および一時を取得したいと思います。
<yweather:condition text="Light Rain" code="11" temp="78" date="Fri, 26 Jul 2013 1:55 pm EDT" />
現在このコードを使用していますが、これを変更して上記の値を取得する方法がわかりません。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.textLabel.text = [[feeds objectAtIndex:indexPath.row] objectForKey: @"title"];
return cell;
}