내 앱에는 사용자 정의 UITableViewCell
이 있고 사용자 정의 셀에는 UIStepper
과 UILabel
이 있습니다. 어떤 스테퍼가 클릭되었는지 확인하는 방법을 모르겠습니다. 그래서 그것은 셀 스테퍼가 클릭 된 것을 알 수있는 방법입니까?uitableviewcell의 UIStepper
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell;
NSString *CellIdentifier = @"Cell";
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
if ([nib count] > 0) {
cell = self.tbcell;
}
}
return cell;
}
UITableViewCell * cell; NSString * CellIdentifier = @ "셀"; cell = [tableView dequeueReusableCellWithIdentifier : CellIdentifier]; if (cell == nil) { NSArray * nib = [[NSBundle mainBundle] loadNibNamed : @ "CustomCell"소유자 : 자체 옵션 : nil]; if ([nib count]> 0) { cell = self.tbcell; } } return cell; –