UITableViewCell 内の CellTextField に数値のみを受け入れさせたいと考えています。次のようにプログラムで UITableViewCells を作成します。
-(UITableViewCell*) getCellContentView: (NSString*) cellIdentifier {
...
UITableViewCell *cell = [[UITableViewCell alloc] initWithFrame:cellFrame reuseIdentifier:cellIdentifier];
...
CellTextField *txt;
txt = [[CellTextField alloc] initWithFrame:amountFrame];
... //here we should setup a delegate or similar to handle char validation for txt
[cell.contentView addSubview:txt];
return cell;
}
UITextField コンポーネントには Delegate 'shouldChangeCharactersInRange' がありますが、CellTextFields に相当するものが見つかりません。