UIGlass 按钮的工作原理

发布于 2024-12-09 23:05:14 字数 74 浏览 1 评论 0原文

我想在我的程序中使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

层林尽染 2024-12-16 23:05:14

UIGlassButton 是一个未记录的类,有被 AppStore 拒绝的风险;但您可以通过抓取 UIGlassButton 的图像并使用该图像创建您自己的模拟玻璃按钮来进行模拟。

为此,我使用了开源 ButtonMaker 项目。

UIGlassButton is an undocumented class and risks AppStore rejection; but you could simulate by grabbing the image of the UIGlassButton and using the image to create your own simulated glass buttons.

I've used the open-source ButtonMaker project for this purpose.

天邊彩虹 2024-12-16 23:05:14

要创建 UIGlassButton,请执行以下操作:

UIButton *button = [[NSClassFromString(@"UIGlassButton") alloc] initWithFrame:CGRectMake(...)];
// configure button like any other UIButton
[self.view addSubview:button];

不过,使用 UIGlassButton 可能会给您在 App Store 审核期间带来问题。

To create a UIGlassButton do the following:

UIButton *button = [[NSClassFromString(@"UIGlassButton") alloc] initWithFrame:CGRectMake(...)];
// configure button like any other UIButton
[self.view addSubview:button];

Using UIGlassButton may give you problems during review for the App Store though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文