iOS中如何获取系统图标
我想在我的表格(UITableView)中使用打开/关闭文件夹之类的图标?
更新: 例如,在 Java 中,您可以获得标准图像“文件夹”并在 FileTree 中使用它:
新 DefaultTreeCellRenderer().getDefaultClosedIcon()
并且还可以使用L&F的常量(颜色、样式、图标)。
在iOS中,我只找到了这些 标准图标。 但不是文件夹图标...
I want to use icons like opened/closed folder in my table (UITableView)?
UPD:
For example, in Java you can get a standard image "folder" and use it in the FileTree:
new
DefaultTreeCellRenderer().getDefaultClosedIcon()
And also can use the constants of L&F (colors, styles, icons).
In the iOS, I found only these standard icons.
But not folder icons...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定你到底想要什么 - iOS 中的文件夹图标?你能解释得更好一点吗?
如果它是您想要的文件夹图标,则没有快速的方法可以从代码中获取它 - 这样做会使用私有 API,并且您的应用程序可能会被应用程序商店拒绝。
如果你想要像文件夹图标这样的东西,获得它的一个好方法是截取 iPhone 模拟器的屏幕截图并将其编辑为正确的大小等。
I'm not quite sure exactly what you want - the folder icon from iOS? Could you explain a little better?
If it is a folder icon that you want, there's no quick way to get it from code - doing so would use private API's and your app is likely to be rejected from the app store.
If you want something like a folder icon, a good way to get it would be by taking a screenshot of the iPhone simulator and editing it to the right size etc.