我在每个单元格中都有UITableView
UITextfield
。在这个场景开始时,我在tableView中有一个单元格,当我开始输入时 - 单元格的数量会增加:
如果在这个位置我会再添加一个单元格,它将被键盘重叠,所以我需要滚动tableView以保持当前的textField成为焦点。我尝试了-scrollToRowAtIndexPath:atScrollPosition:animated:
,但看起来只有当单元格数量超过一个屏幕时才能生效(不确定它是否为tableView contentInset< cells count * cell height),所以它不起作用。我也想在tableView框架上做动画,但这似乎是笨重的决定。
那么,如何只用几个单元格滚动这个tableView呢?
答案 0 :(得分:1)
选项是在编辑开始时调整tableView框架的大小。见下面的例子。 (表视图以编程方式实例化,包括单元格寄存器。使用调整大小的tableView,滚动应该有效。我希望它有帮助... e
#import "ViewController.h"
#import "MyCell.h"
@interface ViewController () <UITableViewDelegate, UITableViewDataSource, UITextFieldDelegate>
@property UITableView *myTableView;
@property NSArray *array;
@end
@implementation ViewController
@synthesize myTableView, array;
- (void)viewDidLoad {
[super viewDidLoad];
myTableView = [[UITableView alloc] init];
myTableView.frame = CGRectMake(0, 100, 320, 300);
[self.view addSubview:myTableView];
[myTableView registerClass:[MyCell class] forCellReuseIdentifier:@"Cell"];
myTableView.delegate = self;
myTableView.dataSource = self;
self.textField.delegate = self;
array = @[@"one", @"two"];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
MyCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
cell.title.text = array[indexPath.row];
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return array.count;
}
- (void) textFieldDidBeginEditing:(UITextField *)textField {
myTableView.frame = CGRectMake(0, 100, 320, 100);
}