带有 narray 的随机图像

发布于 2024-11-05 01:27:24 字数 114 浏览 0 评论 0原文

大家好,我是法国人,请原谅我的英语。所以我想要的是 UIImageView 在不同的(随机)@“XXX.png”文件之间进行选择以将其显示在屏幕上。我认为我们必须使用 NSArray 或类似的东西。请问我该怎么做。

Hi everyone I'm french so excuse me for my english. So what I want is that a UIImageView choose between different(random) @"XXX.png" file to show it on the screen. I think we must use a NSArray or something like that. How can I do this please.

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

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

发布评论

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

评论(1

奢华的一滴泪 2024-11-12 01:27:24

生成从 0 到 x 的数字

  int randomval = arc4random() % x;

使用 0 填充格式化数字

  NSString *s = [NSString stringWithFormat:@"%.3d", randomval];

如果 .png 没有用数字命名,那么您可以使用以下代码将它们加载到数组中 此处

To generate a number from 0 to x

  int randomval = arc4random() % x;

To format the number with 0 padding

  NSString *s = [NSString stringWithFormat:@"%.3d", randomval];

If the .png are not named with numbers, then you could load them into an array with the code here.

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