I have read a lot about my issue and I still cannot pointout the exact problem. I have tried some if the code here in stack but it I keep getting errors. The code below works but vanish the text on scrolling.
Any ideas?
GetQuestionsCustomCell.h:
@interface GetQuestionsCustomCell : UITableViewCell <UITextFieldDelegate>
@property (strong, nonatomic) IBOutlet UILabel *labelQuestion;
@property (strong, nonatomic) IBOutlet UITextField *textFieldAnswer;
@property (strong, nonatomic) IBOutlet UILabel *labelQuestionNumber;
- (IBAction)KeyDown:(id)sender;
@end
GetQuestionsCustomCell.m:
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
NSArray *nibArray = [[NSBundle mainBundle] loadNibNamed:@"GetQuestionsCustomCell" owner:self options:nil];
self = [nibArray objectAtIndex:0];
self.textFieldAnswer.delegate = self;
}
return self;
}
SecurityQuestions.m:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
GetQuestionsCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[GetQuestionsCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
NSInteger nextIndexPathRow = indexPath.row;
nextIndexPathRow++;
cell.labelQuestion.text = [arrayOfQuestions objectAtIndex:indexPath.row];
cell.labelQuestionNumber.text = [NSString stringWithFormat:@".%d", nextIndexPathRow];
switch (indexPath.row) {
case 0:
tfA1 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 1:
tfA2 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 2:
tfA3 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 3:
tfA4 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 4:
tfA5 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 5:
tfA6 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 6:
tfA7 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 7:
tfA8 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 8:
tfA9 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 9:
tfA10 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 10:
tfA11 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
case 11:
tfA12 = (UITextField*)[cell.contentView viewWithTag:nextIndexPathRow];
break;
}
return cell;
}