滚动滚动的 iOS 列表元素的名称
在 iOS 中,当您在列表中滚动经过它时附加到屏幕顶部的元素(想想联系人列表中的单个字母),您如何称呼该元素。这让我抓狂。
In iOS, what do you call that element that attaches to the top of the screen when you scroll past it in a list (think the single letters in the Contact List). This is driving me nuts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这是否是一个完整的问题,但答案是“部分”。如果您的表格样式是普通的,则部分标题的行为将类似于 iPhone 联系人屏幕中的 AZ
http://developer.apple.com/library /ios/documentation/UIKit/Reference/UITableViewController_Class/Reference/Reference.html
i'm not sure this is even a full question, but the answer is 'section'. If you're table style is plain, the section title will behave like the A-Z in the iPhone contacts screen
http://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableViewController_Class/Reference/Reference.html
它是 UITableView。
它的外观取决于桌面视图样式。
就像在联系人应用程序中一样,标题会保留在该部分的顶部,除非该部分的顶部超出屏幕并且该部分中的行仍然可见。
就像在设置应用程序中一样,标题仅显示为条纹背景上的文本,并且无论如何都会随表格视图滚动。它永远不会附着在顶部。
It is the section header of a UITableView.
Its appearance depends on the tableview style.
Like in the contacts app, like header stay at the top of the section unless the top of the section is off the screen and there are rows in the section which are still visible.
Like in the settings app the header just appears as text on the striped background and scrolls with the table view no matter what. It doesn't ever get attached to the top.