Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在运行 iOS 6.1 final 的 iPhone 5 上使用 UIGlassButton。没有错误,只是 UIGlassButton 没有出现。我还在 GitHub 等上尝试了这个和许多其他尚未完成的 GlassButton 项目,但它们都不起作用。
我究竟做错了什么?
这正是您不应该使用私有 API 的原因。因为像这样的类仅供内部使用,它们可能会在操作系统更新之间更改甚至被删除。
想象一下,您将在商店中已经存在的应用程序中使用它,它会崩溃或只是不显示按钮。对待用户的好方法。
UIGlassButton是私有类,不应使用。要创建类似的效果,请自行构建按钮或使用图像。
UIGlassButton