gpt4 book ai didi

iphone - 如何在表格 View 单元格(每行)中添加文本字段并将标签设置为每个文本字段以访问它的文本

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:23:51 24 4
gpt4 key购买 nike

如何在表格 View 单元格(每一行)中添加文本字段。该文本字段将位于每一行的中间。并且还在单元格的每个文本字段上设置标签以访问其文本。

最佳答案

当然可以,举个小例子:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"test"];
if(cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"test"] autorelease];

UITextView *tv = [[UITextView alloc] initWithFrame:CGRectMake(0, (cell.contentView.bounds.size.height-30)/2, cell.contentView.bounds.size.width, 30)];
[cell.contentView addSubview:tv];
[tv setDelegate:self];
tv.tag = indexPath.row;
}

return cell;
}

...
- (void)textViewDidEndEditing:(UITextView *)textView {
NSLog(@"%d", textView.tag);

[textView resignFirstResponder];
}
...

关于iphone - 如何在表格 View 单元格(每行)中添加文本字段并将标签设置为每个文本字段以访问它的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10161828/

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