iPhone SDK 简单问题
是否可以将 UIActivityIndicatorView 添加到 UITableViewCell 的左侧?我们已经使用 UITableViewCell 的右侧作为披露指示器。
谢谢。
Is it possible to add a UIActivityIndicatorView to the left side of a UITableViewCell? We're already using the right side of a UITableViewCell for a disclosure indicator.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然。只需实例化一个 UIActivityIndicatorView,为其提供一个 .frame,将其设置在您想要的位置,将其添加为 cell.contentView 的子视图,然后调用
startAnimating
。Sure. Just instantiate a UIActivityIndicatorView, give it a .frame that sets it where you want it, add it as a subview of cell.contentView, and call
startAnimating
.如果您创建自定义单元格,您可以执行任何您想要的操作。但是 Apple 的此文档 应该可以为您提供所需的一切,无论是向常规旧 UITableViewCell 添加子视图还是创建自己的子视图。
If you create a custom cell, you can do anything you want. But this document here from Apple should give you all you need whether just adding subviews to a regular old UITableViewCell or creating your own.