- (void)viewDidLoad 
{
  //json parsing 
    for (NSDictionary *ResultDictionary in dataDictionary) {
        ResultTabObject *ResultcurrenObjet = [[ResultTabObject alloc]initWithDate:[ResultDictionary objectForKey:@"MATCH_DATE"] ATeamName:[ResultDictionary objectForKey:@"COMPETITION_CODE"];
        [self.ResultHolderArray addObject:ResultcurrenObjet];
    }
}  
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{    
    static NSString *CellIdentifier = @"Cell";
    ResultTabCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    ResultTabObject *ResultcurrenObjet = [self.ResultHolderArray
                                 objectAtIndex:indexPath.row];
    cell.lblDate.text=ResultcurrenObjet.Date;
    return cell;
}
-(NSMutableArray *)ResultHolderArray{
    if(!_ResultHolderArray) _ResultHolderArray = [[NSMutableArray alloc]init];
    return _ResultHolderArray;
}
I receive the dictionary values by using above code now I have to pass the ResultDictionary to another viewController Thanks in Advance
 
     
    