UITableViewCell 带有添加照片按钮,就像在联系人应用程序中一样?

发布于 2024-12-11 19:07:35 字数 519 浏览 0 评论 0原文

如何像联系人应用程序中那样使用添加照片按钮创建 UITableViewCell?

UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(20, 1, 70, 40)] autorelease];
label.backgroundColor = [UIColor clearColor];
label.font = [UIFont boldSystemFontOfSize:16];

UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(70, 10, 217, 30)];
textField.backgroundColor = [UIColor clearColor];
textField.returnKeyType = UIReturnKeyDone;

[cell.contentView addSubview:label];
[cell.contentView addSubview:textField];

How can I create UITableViewCell with add photo button like in Contacts app?

UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(20, 1, 70, 40)] autorelease];
label.backgroundColor = [UIColor clearColor];
label.font = [UIFont boldSystemFontOfSize:16];

UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(70, 10, 217, 30)];
textField.backgroundColor = [UIColor clearColor];
textField.returnKeyType = UIReturnKeyDone;

[cell.contentView addSubview:label];
[cell.contentView addSubview:textField];

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

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

发布评论

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

评论(3

思慕 2024-12-18 19:07:35

将照片添加到 tableviewcell 并不太复杂。

UIButton* btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[btn setFrame:CGRectMake(5,0,40,30)];

[btn setBackGoundImage:[UIImage imageName:@"ABC.png"]];

[cell.contentView addSubview:btn];

如果您希望您的应用程序看起来类似于 Iphone 中的联系人应用程序,那么您需要使用滚动视图而不是表格视图。

Adding photo to tableviewcell is not too complicated.

UIButton* btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[btn setFrame:CGRectMake(5,0,40,30)];

[btn setBackGoundImage:[UIImage imageName:@"ABC.png"]];

[cell.contentView addSubview:btn];

If you want your application looks similar to contacts app as in Iphone, then you need to use scrollview instead of tableview.

轻许诺言 2024-12-18 19:07:35

只需添加一个 UIButton 并将拇指图片设置为其 backgroundimage 或 imageview 属性。

just add a UIButton and set a thumb picture to its backgroundimage or imageview property.

°如果伤别离去 2024-12-18 19:07:35

最简单的方法是使用 xib 创建 UITableViewCell 的自定义子类。然后,您只需在 -tableView:cellForRowAtIndexPath 方法中选择单元格,如下所示

myCustomCell *cell =
(myCustomCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

然后配置它们

The easiest way is to make a custom subclass of UITableViewCell with a xib. Then you will just have to pick your cells in the -tableView:cellForRowAtIndexPath method like this

myCustomCell *cell =
(myCustomCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

and then configure them

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