如何在 iPad 上重建“设置”应用程序的左侧表格视图
如何构建类似于 iPad 设置应用程序中风格的 UITableView?我已经设置了一个类似的图像作为背景图像。但是,我不知道如何向单元格添加两个边框或如何更改选择时的文本阴影。
最好的, 菲利普
How can I build a UITableView styled like in the iPad Settings app? I have already set an similar image as the background image. However, I have no idea how to add two border to a cell or how to change the text shadow on selection.
Best,
Philip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iPad 设置应用程序是一个 UISplitView 应用程序,而不仅仅是一个基本的 UITableView 应用程序。 UISplitView 是一个容器,包含两个独立的 UIViewController,一个用于左窗格,一个用于右窗格。它们通过实现 UISplitViewDelegate 相互链接。 UISplitViewController 类参考可以为您提供更多信息。希望这有帮助。
iPad Settings app is a UISplitView app, not just a basic UITableView app. UISplitView is a container containing two separate UIViewControllers, one for left pane, one for right. They are linked to each other by implementing UISplitViewDelegate. UISplitViewController Class Reference can provide you with more information. Hope this helps.