“X”是? SDK 主屏幕部分的删除按钮?
因此,当您想从主屏幕删除应用程序或从 iBooks 删除书籍时,当您进入“编辑模式”时,应用程序图标/书籍/其他内容的左上角会出现一个小 X。
这个按钮是SDK的一部分吗?
而且...如果没有(我很确定不是),有人知道可能包含 X 映像的 Apple 示例项目吗?
So when you want to delete an app from the Home Screen, or delete a book from iBooks, when you get into "Edit Mode" there is a little itty bitty X in the upper left hand corner of the app icon/book/whatever.
Is this button part of the SDK?
And... if not (I'm pretty sure it isn't), does anybody know an Apple sample project that might contain the X image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试在 Springboard.app 中查找。 (Springboard 是 iOS 中的主屏幕。)它应该位于以下位置:
/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator*XYZ*.sdk/System/Library/CoreServices/SpringBoard.app/
编辑:根据下面的评论,4.1模拟器sdk的图像位置是:
/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/System/Library/CoreServices/SpringBoard。 app/closebox.png /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/System/Library/CoreServices/SpringBoard.app/closebox\@2x.png
You could try looking in the Springboard.app. (Springboard is the home screen in iOS.) It should be located somewhere like:
/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator*X.Y.Z*.sdk/System/Library/CoreServices/SpringBoard.app/
EDIT: per the comment below, the location of the images for the 4.1 simulator sdk is:
/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/System/Library/CoreServices/SpringBoard.app/closebox.png /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/System/Library/CoreServices/SpringBoard.app/closebox\@2x.png
如果您有兴趣使用 Quartz 绘制它,可以从我创建的 CALayer 中提取以下代码来呈现这种删除按钮:
在本例中,
StrokeColor
是一个白色的 CGColorRef,该图层是31 x 31,笔划宽度为 2.0。If you're interested in drawing this using Quartz, the following code is pulled from a CALayer that I created to render this kind of delete button:
in this case,
strokeColor
is a white CGColorRef, the layer is 31 x 31, and thestrokeWidth
is 2.0.如果您想使用此图像,只需:
抱歉,我不记得有任何项目使用过它......
If you want to use this image, just:
Sorry I don't remember any project that uses it...