当前位置:  开发笔记 > IOS > 正文

如何从iPhone SDK中提取UIBarButtonItem图标?

如何解决《如何从iPhoneSDK中提取UIBarButtonItem图标?》经验,为你挑选了1个好方法。

我想从iPhone SDK中提取默认的UIBarButtonItem图标.我想他们可能只是作为alpha-channel-only PNG存储在iPhoneSimulator平台上,但我还没有找到它.

我正在寻找的是UIBarButtonSystemItemReply.(对于那些可疑的,甚至有一个有效的用例,我希望在用户可以发布回复的表行标题上使用它,行方式)



1> 小智..:

要复制所有iPhone(或MacOS)系统图标,请转到目录:

cd /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/ 

=>可能有多个iPhoneSimulator版本(iPhoneSimulator4.3.sdk),只需选择您喜欢的版本.然后执行以下命令:

find . -iname "*.png*" -print0 | xargs -I{} -0 cp -v {} /tmp/iPhoneIcons/

/tmp/iPhoneIcons/ =>是目标目录


从Mac OS 10.8开始,SDK目录移至`/ Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs`
推荐阅读
手机用户2502852037
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有