gpt4 book ai didi

iphone - UITableViewCell 中的 UITextField

转载 作者:行者123 更新时间:2023-12-03 21:06:43 25 4
gpt4 key购买 nike

这几天我一直在尝试这样做,但没有成功。我自己也曾陷入过这样的困境。现在我真的很困惑我应该如何处理这个问题。从哪里开始新的 .h 和 .m 文件。 :/

我的目标是将一个 UITextField 放在几个 UITableViewCell 中。就像这样:

enter image description here

还有这个:

enter image description here

有人可以帮助我提供某种教程吗?

谢谢。

最佳答案

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:kCellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:kCellIdentifier] autorelease];
cell.accessoryType = UITableViewCellAccessoryNone;
}
if (indexPath.row== 0) {
UITextField *TextField = [[UITextField alloc] initWithFrame:CGRectMake(110, 10, 185, 30)];
TextField.adjustsFontSizeToFitWidth = YES;
TextField.textColor = [UIColor blackColor];
TextField.placeholder = @"mathie";
[cell addSubview:TextField];
}
return cell;
}

关于iphone - UITableViewCell 中的 UITextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6422960/

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