实施“添加照片”类似于 iPhone 联系人应用程序的按钮

发布于 2024-08-19 05:03:35 字数 221 浏览 3 评论 0原文

我很好奇是否有人知道创建类似于 iPhone 联系人应用程序中的“添加照片”图像图块的过程。它似乎与缩短的 UITableViewCell 处于同一水平(如果这是完成的方式)。

我读过有关 headers 或自定义 UITableViewCells 的建议,但没有明确说明它是如何完成的。任何说明性代码片段都将受到欢迎。

感谢您的回复。

I was curious if anybody knew the process to create an "add photo" image tile similar to that in the iPhone contacts app. It seems to be on the same level as a UITableViewCell which is shortened (if this is the way it is done).

I've read a suggestion dealing with Headers or custom UITableViewCells but nothing definitive on how it was done. Any illustrative code snippets would be most welcome.

Thank you for any replies.

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

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

发布评论

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

评论(3

摘星┃星的人 2024-08-26 05:03:35

它只是添加到 UITableViewCell 中的 UIButton。您可以简单地使用 UITableViewCelladdSubview 方法向单元格添加按钮。

It's just a UIButton added to a UITableViewCell. You can simply use the addSubview method of the UITableViewCell to add a button to the cell.

浅唱々樱花落 2024-08-26 05:03:35

它是一个标题。大多数功能都在苹果开发者网站的“HeaderFooter”示例中。在该示例中,他们使用 UIImageView 作为照片区域,但您可以使用 UIButton 来实现它。如果您这样做,只需在需要时将文本设置为“添加照片”,并使用大约 12 号的蓝色粗体字体。如果您想将其保留为 imageView,则必须将文本放在顶部的子视图它的。

It is a header. Most of the functionality is in the 'HeaderFooter' example from the apple developer site. In that example they use a UIImageView for the photo area, but you can implement it with a UIButton instead. If you do this, just set the text to 'Add Photo' when desired, with a blue bold font of about size 12. If you want to leave it as an imageView, you'll have to put a subview with the text on top of it.

述情 2024-08-26 05:03:35

可以使用 UIButton 轻松重新创建名称部分,并将详细信息公开图标的 PNG 图像设置为按钮图像。它看起来确实像一个小的 UITabelViewCell。

如果你真的想要,你可以使用一个微小的 UITableViewCell 而不是 PNG 来渲染详细信息公开图标,但这是一个更重、更笨拙的解决方案。

The name part can easily be recreated with a UIButton with a PNG image of a detail disclosure icon set as the button Image. It really looks like a small UITabelViewCell.

If you really want you can use a tiny UITableViewCell instead of the PNG for to render the detail disclosure icon, but that's a heavier, more kludgy solution.

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