如何在uitableviewcell中添加文本字段

发布于 2024-11-08 14:07:02 字数 453 浏览 0 评论 0原文

我有一个表格视图,其中有一行和一个部分,表格视图的行高为 300,并且行有一张覆盖整行的图像。我想添加三个文本字段和一个按钮;我正在添加文本字段,该文本字段已正确添加但未显示。

我添加 cellforrowAtIndexPath 代码是:

    companyName = [[UITextField alloc]initWithFrame:CGRectMake(33, 6, 259, 31)];
    companyName.textColor = [UIColor BlackColor];
    companyName.delegate =self;
    companyName.textAlignment = UITextAlignmentCenter;
    companyName.highlighted = YES;
    [self.view addSubview:companyName];

I have one tableview which are having one row and one section and the row height of tableview 300, and row have an image which covers whole row. I want to add three textfield and one button; I am adding textfield which are add properly but does not show.

I am adding cellforrowAtIndexPath code is:

    companyName = [[UITextField alloc]initWithFrame:CGRectMake(33, 6, 259, 31)];
    companyName.textColor = [UIColor BlackColor];
    companyName.delegate =self;
    companyName.textAlignment = UITextAlignmentCenter;
    companyName.highlighted = YES;
    [self.view addSubview:companyName];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的他你的她 2024-11-15 14:07:02

您不是在单元格中添加文本字段,而是在 UIView 中添加。

[cell.contentView addSubview:companyName];

you are not adding textfield in cell but adding in UIView.

[cell.contentView addSubview:companyName];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文