UIGlass 按钮的工作原理
我想在我的程序中使用UIGlassButton,但我不知道这个按钮类的工作过程。我想像 UIButton 类一样使用它,但它不起作用。
I want to use UIGlassButton in my program but I don't know the working process of this button class. I am tying to use this the same as UIButton class but it's not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UIGlassButton
是一个未记录的类,有被 AppStore 拒绝的风险;但您可以通过抓取UIGlassButton
的图像并使用该图像创建您自己的模拟玻璃按钮来进行模拟。为此,我使用了开源 ButtonMaker 项目。
UIGlassButton
is an undocumented class and risks AppStore rejection; but you could simulate by grabbing the image of theUIGlassButton
and using the image to create your own simulated glass buttons.I've used the open-source ButtonMaker project for this purpose.
要创建 UIGlassButton,请执行以下操作:
不过,使用
UIGlassButton
可能会给您在 App Store 审核期间带来问题。To create a UIGlassButton do the following:
Using
UIGlassButton
may give you problems during review for the App Store though.