以给定的频率闪烁 iphone ipad 的屏幕

发布于 2024-11-19 14:15:52 字数 79 浏览 3 评论 0原文

我希望我的应用程序在屏幕上闪烁/闪烁,希望以给定的精确频率(例如从 2 Hz 到 70 Hz)显示视频或照片,可能会变黑,或者使用重型深色滤镜?

I want my app to blink/flicker in the screen hopefully showing a video or photos, in a given exact frequency, like from 2 Hz to 70 Hz, could go black, of with a heavy dark filter?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

暮光沉寂 2024-11-26 14:15:52

创建间隔为 1/70 的预定计时器。

[NSTimer scheduledTimerWithTimeInterval:1.0/70.0 target:self selector:@selector(flicker) userInfo:nil repeats:YES];

然后,在闪烁方法中,更改视图的 alpha 属性。

亚历克斯

Create a scheduled timer with interval of 1/70.

[NSTimer scheduledTimerWithTimeInterval:1.0/70.0 target:self selector:@selector(flicker) userInfo:nil repeats:YES];

Then, in your flicker method, change the alpha property of your view.

Alex

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