-(IBAction) refreshPrice:(id)sender
tableView:(UITableView *) tableView
{
NSString *allSet;
allSet=@"&";
UITableViewCell *cell;
for (int i=[allSets count]; i>0; i--)
{
//allSet=[allSet stringByAppendingFormat:@"%d",i];
if (cell==nil) {
cell=[tableView cellForRowAtIndexPath:[NSIndexPath indexPathWithIndex:i]];
}
//cell=[tableView cellForRowAtIndexPath:[NSIndexPath indexPathWithIndex:i]];
allSet=[allSet stringByAppendingFormat:@"%@",cell.textLabel.text];
[cell release];
}
NSLog(allSet);
}