gpt4 book ai didi

ios - 如果单元格数量少于一个屏幕,则滚动 UITableView

转载 作者:行者123 更新时间:2023-11-29 12:48:52 25 4
gpt4 key购买 nike

我在每个单元格中都有 UITableViewUITextfield。在这个场景的开始,我在 tableView 中有一个单元格,当我开始打字时 - 单元格数量增加:enter image description here

如果我在这个位置再添加一个单元格,它会被键盘覆盖,所以我需要滚动 tableView 以保持当前 textField 处于焦点状态。我试过 -scrollToRowAtIndexPath:atScrollPosition:animated: 但看起来只有当单元格数量超过一个屏幕可以容纳时它才有效(不确定它是否是 tableView contentInset < cells count * cell height),所以它没有用。我也考虑在 tableView 框架上做动画,但这似乎是一个笨拙的决定。那么,我怎样才能滚动这个只有几个单元格的 tableView?

最佳答案

一个选项是在编辑开始时调整 tableView 框架的大小。请参见下面的示例。 (表格 View 以编程方式实例化,包括单元格寄存器。使用调整大小的表格 View ,滚动应该起作用。我希望它能帮助... 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);
}

关于ios - 如果单元格数量少于一个屏幕,则滚动 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22916470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com