我想从iPhone SDK中提取默认的UIBarButtonItem图标.我想他们可能只是作为alpha-channel-only PNG存储在iPhoneSimulator平台上,但我还没有找到它.
我正在寻找的是UIBarButtonSystemItemReply.(对于那些可疑的,甚至有一个有效的用例,我希望在用户可以发布回复的表行标题上使用它,行方式)
要复制所有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/
=>是目标目录