自定义UITableView中group的位置
是否可以自定义 UITableViewController 中组的位置?例如,水平绘制组或自定义两个组内的空间。
谢谢。
Is it possible to customize the position of groups in a UITableViewController
? For example, drawing the groups horizontally or customize the space inside two groups.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的目标是 iOS 6+,
UICollectionView
实现了您正在寻找的功能。它可以进行开箱即用的水平布局,UICollectionViewLayout
允许您自定义有关项目显示和定位的所有内容。如果面向 iOS 4.3+,则有一个名为 PSTCollectionView 的第三方实现。If you are targeting iOS 6+,
UICollectionView
implements the features you are looking for. It can do a horizontal layout out of the box andUICollectionViewLayout
allows you to customize everything about the display and positioning of items. If targeting iOS 4.3+, there is a third-party implementation of it called PSTCollectionView.