UITableView 之外的 UIImage 和 UILabel
看这张图片:
替代文本 http://img139.imageshack.us/img139/4488 /picture2ep3.png
我知道如何添加具有分组样式的 UITableView 以及如何在任何表格单元格中添加标签。
但是如何在视图顶部添加图像和标签,例如屏幕。
Look at this image:
alt text http://img139.imageshack.us/img139/4488/picture2ep3.png
I know how to add UITableView with grouped style and how to add label in any table cell.
But how can I add image and labels on top on the view, like screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Interface Builder,您只需将这些(UILabels 和 UIImageViews)拖到您的视图上。 如果您使用的是 UITableViewController,您可能需要切换到标准 UIViewController,以便更好地控制视图中的内容。
拖动它们后,通过插座将它们连接起来(如果您想以编程方式更改/访问它们)或在 IB 中设置它们的内容并完成操作。
Using Interface Builder, you can just drag these (UILabels and UIImageViews) onto your view. If you're using a UITableViewController, you might want to switch to a standard UIViewController, to give you more control over what goes into the view.
After you've dragged them on, hook them up via outlets (if you want to programatically change/access them) or set their contents in IB and be done with it.