实施“添加照片”类似于 iPhone 联系人应用程序的按钮
我很好奇是否有人知道创建类似于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它只是添加到
UITableViewCell
中的UIButton
。您可以简单地使用UITableViewCell
的addSubview
方法向单元格添加按钮。It's just a
UIButton
added to aUITableViewCell
. You can simply use theaddSubview
method of theUITableViewCell
to add a button to the cell.它是一个标题。大多数功能都在苹果开发者网站的“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.
可以使用 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.