uiscrollview - 多个文本字段的 ScrollView 不起作用

标签 uiscrollview uitextfield

嗨,我可以很容易地滚动来使用一个文本框,但是当我添加 10 个文本框并使用苹果文档中的代码时,我不知道如何让它将 10 个字段中的任何一个的触摸委托(delegate)给 ScrollView ,我无法弄清楚如何将 activeField 连接到有问题的文本字段。我认为这就是我失败的地方,答案在于授权

@interface ImmyViewController ()

@end

@implementation ImmyViewController
@synthesize activeField;
@synthesize scrollView;
@synthesize text1;
@synthesize text2;
@synthesize text3;
@synthesize text4; 
@synthesize text5;
@synthesize text6;
@synthesize text7;
@synthesize text8;
@synthesize text9;
@synthesize text10;

- (void)viewDidLoad
{
    [super viewDidLoad];

    text1.delegate =self;
    text2.delegate =self;
    text3.delegate =self;
    text4.delegate =self;
    text5.delegate =self;
    text6.delegate =self;
    text7.delegate =self;
    text8.delegate =self;
    text9.delegate =self;
    activeField.delegate=self;

    text10.delegate =self;

// Do any additional setup after loading the view, typically from a nib.
//---set the viewable frame of the scroll view---
    scrollView.frame = CGRectMake(0, 0, 320, 460);

//---set the content size of the scroll view---
    [scrollView setContentSize:CGSizeMake(320, 833)];

}

//在 View Controller 设置代码中的某个位置调用此方法。 - (void)registerForKeyboardNotifications { [[NSNotificationCenter defaultCenter] addObserver:self 选择器:@selector(keyboardWasShown:) 名称:UIKeyboardDidShowNotification 对象: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);
scrollView.contentInset = contentInsets;
scrollView.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, text10.frame.origin.y-kbSize.height);
    [scrollView setContentOffset:scrollPoint animated:YES];
}

}

//发送 UIKeyboardWillHideNotification 时调用 - (void)keyboardWillBeHidden:(NSNotification*)aNotification {

    UIEdgeInsets contentInsets = UIEdgeInsetsZero;
    scrollView.contentInset = contentInsets;
    scrollView.scrollIndicatorInsets = contentInsets;
 }

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
    activeField = textField;
}

- (void)textFieldDidEndEditing:(UITextField *)textField
{
    activeField = nil;
}

最佳答案

您可以使用 textFieldDidBeginEditing 来管理所有文本字段,只需替换此代码中的值即可。

- (void)textFieldDidBeginEditing:(UITextField *)textField{
    if (textField.tag==1) {
        [scroll_view setContentOffset:CGPointMake(0, 0)animated:YES];
    }
    if (textField.tag==2) {
        [scroll_view setContentOffset:CGPointMake(0, 81)animated:YES]; 
    }
    if (textField.tag ==3) {
        [scroll_view setContentOffset:CGPointMake(0, 115)animated:YES]; 
    }
    if (textField.tag ==4) {
        [scroll_view setContentOffset:CGPointMake(0, 150)animated:YES]; 
    }
    if (textField.tag ==5) {
        [scroll_view setContentOffset:CGPointMake(0, 185)animated:YES]; 
    }
    if (textField.tag ==6) {
        [scroll_view setContentOffset:CGPointMake(0, 220)animated:YES]; 
    }

}

关于uiscrollview - 多个文本字段的 ScrollView 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16355930/

相关文章:

ios - 使用手势识别器识别 UIView 中的滑动手势以滚动 ScrollView

ios - 淡化 UITableView 的边缘

ios - 如何在ios中限制UITextField的有限字符

iphone - 一个 View 上有多个 UITextField

iOS - 向上移动文本字段并不总是有效

ios - Swift 如何从两个文本字段中获取 Int 并生成随机数

ios - 如何知道 UITableView 已完成 swift 中的数据加载

ios - 断断续续的分页 UIScrollView 体验

ios - 将ScrollView添加到UIView中

ios - 检查坐标有效性 - UITextField - iOS