绘制蓝色“未读点” 在 iPhone 邮件应用程序上
有谁有如何绘制苹果邮件应用程序中使用的蓝色“未读点”的示例吗? 具体来说:
使用 Quartz2d 绘制椭圆很简单,但需要巧妙地使用阴影+渐变让这个看起来真正的3D。
Does anyone have an example of how to draw the blue "unread dot" used in Apple's Mail App? This one in specific:
Drawing an ellipse is straight forward with Quartz2d, but the subtle use of shadows+gradients make this look really 3d.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您决定使用某个资源,有一个名为 UIKit-Artwork-Extractor 的应用程序,它允许您从已安装的所有 IOS 应用程序中提取所有资源
https://github.com/0xced/UIKit-Artwork-Extractor
If you decide to go with a resource there is an app called UIKit-Artwork-Extractor that allows you to rip all the resources from all the IOS apps you have installed
https://github.com/0xced/UIKit-Artwork-Extractor
我认为邮件中的蓝点实际上是一个图像; 我认为位图传送图像会比绘制渐变更快。
I think the blue dot in mail is actually an image; I would imagine that blitting an image would be faster than drawing a gradient.