静的な TableViewcells に静的に配置された多くのテキスト フィールドがあります。各テキストフィールドの参照アウトレットを作成せずに、その中のテキストにアクセスするにはどうすればよいですか? セルのサブビューを取得しようとしました。動いていない。代替案はありますか?
私はこれを試しました。動いていない。
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [super tableView:tableView
cellForRowAtIndexPath:indexPath];
for (UIView *subview in [cell subviews]){
if([subview isKindOfClass:[UITextField class]]){
UITextField *inputField = (UITextField *)subview;
NSLog(@"%@",inputField.text);
}
}
return cell;
}