iphoneアプリ開発初心者です。私は2週間この問題に苦しんでいます。
xib の uiviewcontroller クラスで検索バーを使用して uitableview を作成しました。ここでは、カスタム セルを使用してテーブル ビューを表示しています。ここでは、画像とラベルを表示して、プロフィール画像と辞書のテキストを表示しています。カスタムセルの+および-機能のステッパー。今、ラベルにステッパーアクションを表示したい。+ボタンをクリックすると、ラベルカウントは1になり、-ボタンをクリックすると、カウントは同じセルで0になる。表示したい同じセル内のボタン数。
誰でも私を助けることができます...
ありがとうございます...
viewcontroller.m
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"ListOfProductsCell";
ListOfProductsCell *cell = (ListOfProductsCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ListOfProductsCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
productItemDit=[productListArry objectAtIndex:indexPath.row];
NSString *offerStr= [NSString stringWithFormat:@"%.2f",[[productItemDit objectForKey:@"offer"] floatValue]];
NSString *fullCostStr=[[currencyCodeStr stringByAppendingString:@" "] stringByAppendingString:offerStr];
NSLog(@"%@",fullCostStr);
cell.itemCostLbl.text=fullCostStr;
cell.itemStepper.tag=166;
cell.itemAddedLbl.tag=122;
cell.itemImg.image = [UIImage imageNamed:@"profp.jpg"];
}
if (tableView == self.searchDisplayProduct.searchResultsTableView) {
searchProductItemDit=[searchProductListArry objectAtIndex:indexPath.row];
NSLog(@"searchdit:%@",searchProductItemDit);
cell.itemNameLbl.text= [searchProductItemDit objectForKey:@"name"];
self.searchDisplayProduct.searchResultsTableView.separatorColor=[UIColor colorWithRed:200.0 green:0.0 blue:0.0 alpha:1.0];
} else {
productItemDit=[productListArry objectAtIndex:indexPath.row];
NSLog(@"dit:%@",productItemDit);
cell.itemNameLbl.text=[productItemDit objectForKey:@"name"];
}
cell.itemAddedLbl =(UILabel*)[cell viewWithTag:122];
cell.itemAddedLbl.text = [[NSString alloc] initWithFormat:@"%d",itemCount];
return cell;
}
ListOfProducts.m
//this method in custom class to get stepper action
-(IBAction)itemValueChanged:(UIStepper *)sender
{
ListOfProductsCell *clickedCell = (ListOfProductsCell *)[[sender superview] superview];
double stepperValue = itemStepper.value;
itemAddedLbl=(UILabel*)[clickedCell viewWithTag:122];
itemAddedLbl.text=[[NSString alloc] initWithFormat:@"%.f", stepperValue];
}
上記で使用すると完全に機能しますが、テーブルビューをスクロールすると、ステッパーから追加した値が消えます