0

NSArrayの値の表示に問題がありUITableViewます。私のコードでは、nil値を取得しています。

arr = [[tempDict1 valueForKey:@"rates"] componentsSeparatedByString:@";"];

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
      [connection release];

       NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
       self.responseData = nil;

       values = [responseString JSONValue];
       array = [[NSMutableArray alloc] init];
       NSMutableArray *arrTitle = [[NSMutableArray alloc] init];
       NSMutableArray *arrValues = [[NSMutableArray alloc] init];
       array =[values valueForKey:@"rates"];

       NSLog(@"array values:--> %@",array);
 //    NSLog(@"values:--> %@",values);
 //    NSLog(@"Particular values:--> %@",[[values valueForKey:@"rates"] valueForKey:@"AED"]);

       tempDict1 = (NSMutableDictionary *)array;            
       NSArray *arr;// =[[NSArray alloc]init];
       arr = [[tempDict1 valueForKey:@"rates"] componentsSeparatedByString:@";"];
       NSLog(@"arr-->%@",arr);
       NSString *subStar = @"=";
       [arrTitle removeAllObjects];
       [arrValues removeAllObjects];

       for (int i=0; i<[arr count]-1; i++)
       {
            [arrTitle addObject:[[arr objectAtIndex:i] substringToIndex:NSMaxRange([[arr objectAtIndex:i] rangeOfString:subStar])-1]];
            [arrValues addObject:[[arr objectAtIndex:i] substringFromIndex:NSMaxRange([[arr objectAtIndex:i] rangeOfString:subStar])]];
             NSLog(@"arrTitle is:--> %@",arrTitle);
       }

       tempDict1 = (NSMutableDictionary*)[array objectAtIndex:0];
       array = [values valueForKey:@"rates"];
       NSLog(@"tempDict--%@",[tempDict1 objectForKey:@"AED"]);

       [array retain];
       [tbl_withData reloadData];
}

uitableviewコードは以下です

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"array-->%@",array);
    return [array count];

}

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    intIndexPath = indexPath.row;
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault    reuseIdentifier:CellIdentifier] autorelease];
        cell.textLabel.adjustsFontSizeToFitWidth = YES;
        cell.textLabel.font = [UIFont systemFontOfSize:8];
        cell.textLabel.numberOfLines = 4;

    }

//    NSLog(@"data is like:--> %@",array);
//    cell.textLabel.text= [NSString stringWithFormat:@"%@",[array objectAtIndex:intIndexPath]];
    cell.textLabel.text =[array objectAtIndex:intIndexPath];

    return cell;
}
4

1 に答える 1

1

テーブル ビュー プログラミング ガイドに目を通す

https://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/AboutTableViewsiPhone/AboutTableViewsiPhone.html

テーブル ビューをコンテンツで埋めるには、クラスに UITableView デリゲート メソッドを実装する必要があります。

これも参照して ください。

コードは次のとおりです。

    //this is your dictionary:
    self.values = [[[NSMutableDictionary alloc] init] autorelease];
    //filled it with values:
    [self.values setObject:@"201" forKey:@"ams"];
    [self.values setObject:@"500.50" forKey:@"hyd"];
    [self.values setObject:@"200.10" forKey:@"guj"];
    [self.values setObject:@"400" forKey:@"afgd"];
    //now get an array of keys out of it. Can do it anywehe... For example in connectionDidFinishLoading method
    self.keys = [[[NSArray alloc] initWithArray:[values allKeys]] autorelease];

今 cellForRoAtIndexPath メソッド:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault    reuseIdentifier:CellIdentifier] autorelease];
        cell.textLabel.adjustsFontSizeToFitWidth = YES;
        cell.textLabel.font = [UIFont systemFontOfSize:8];
        cell.textLabel.numberOfLines = 4;

    }
    NSString *currentKey = [self.keys objectAtIndex:indexPath.row];
    NSString *currentValue = [self.values objectForKey:currentKey];

    NSString *cellText = [NSString stringWithFormat:@"%@:%@", currentKey, currentValue];

    cell.textLabel.text = cellText;

    return cell;
}

それは私のマシンで動作しました..

于 2012-09-13T14:05:00.347 に答える