表示するコンテンツが多すぎて一度に表示できないため、スクロールバーを挿入したストーリーボードがあります。スクロール バーには以下が含まれます。
- 画像ビュー
- ラベル
- グループ化されたテーブル ビュー
テーブル ビューの行は 2 種類あります。最初の種類 (コントローラーの regularRegistrationCellVC によって定義される) には、テキスト フィールドとラベルが含まれます。生成されたセルのテキストフィールドをクリックすると、キーボードが表示され、テキストフィールドが非表示になります。さらに、ビューのコンテンツを上にスクロールして、キーボードの下にあるものを確認することはできません。そこで、Apple の指示に従って、スクロール バーを含むコントローラーに次のコードを追加しました。
キーボード通知の登録
- (void)registerForKeyboardNotifications
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasShown:)
name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillBeHidden:)
name:UIKeyboardWillHideNotification object:nil];
}
UIKeyboardDidShowNotification が送信されたときに呼び出されます
- (void)keyboardWasShown:(NSNotification*)aNotification
{
NSDictionary* info = [aNotification userInfo];
CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);
scrollPanel.contentInset = contentInsets;
scrollPanel.scrollIndicatorInsets = contentInsets;
// If active text field is hidden by keyboard, scroll it so it's visible
// Your application might not need or want this behavior.
CGRect aRect = self.view.frame;
aRect.size.height -= kbSize.height;
if (!CGRectContainsPoint(aRect, activeField.frame.origin) ) {
CGPoint scrollPoint = CGPointMake(0.0, activeField.frame.origin.y-kbSize.height);
[scrollPanel setContentOffset:scrollPoint animated:YES];
}
}
キーボードが消えたときに呼び出されます
- (void)keyboardWillBeHidden:(NSNotification*)aNotification
{
UIEdgeInsets contentInsets = UIEdgeInsetsZero;
scrollPanel.contentInset = contentInsets;
scrollPanel.scrollIndicatorInsets = contentInsets;
}
編集開始イベントの管理
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
activeField = textField;
NSLog(@"inizio digitazione\n");
}
編集終了イベントの管理
- (void)textFieldDidEndEditing:(UITextField *)textField
{
activeField = nil;
}
ここで、activeFieldはコントローラーのグローバル変数です。
次に、最初の種類のセルを作成するコードの一部を変更し、最初の種類のすべての新しいセルがビュー コントローラーをデリゲートとして持つようにしました。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if (indexPath.section == 0) {
static NSString *CellIdentifier = @"regularRegistrationCell";
regularRegistrationCellVC *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[regularRegistrationCellVC alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.regularFieldName.text = [self.orientationItems objectAtIndex:indexPath.row];
cell.regularTextField.delegate = self;
return cell;
}
else{
static NSString *CellIdentifier = @"orientationRegistrationCell";
orientationRegistrationCellVC *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[orientationRegistrationCellVC alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.fieldLabel.text = [self.orientationItems objectAtIndex:[orientationItems count]-1];
NSUserDefaults *standardUserDefaults = [NSUserDefaults standardUserDefaults];
NSString *val = nil;
if (standardUserDefaults)
val = [standardUserDefaults objectForKey:@"orientation"];
if (val == nil)
cell.orientationLabel.text = @"Eterosessuale";
else
cell.orientationLabel.text = val;
return cell;
}
}
最後に、ビュー コントローラー (スクロール バーとそのコンテンツで構成される) が UITextFieldDelegateを実装することを宣言しました。NSLog プリントを使用して、テキスト フィールドがクリックされるたびに、イベントを管理する関数が確実に実行されることがわかりました。
私がどこを間違えているか教えていただけますか?
手伝ってくれてありがとう