随机数 sqlite iphone

发布于 2024-10-24 19:45:28 字数 301 浏览 0 评论 0原文

我正在尝试获取一个随机数并将其与 sqlite 行匹配。到目前为止我有:

number = (arc4random()%8)+1;
NSString *string = [NSString stringWithFormat:@"%i",number];
_label.text = string;

我对如何获取这个随机数并将其与 sqlite 进行匹配感到困惑?我正在尝试显示“recipe.name”。另外,我如何将“count”合并到其中,以便它通过 sqlite 表中的行数限制随机数?

提前致谢!

I'm trying to get a random number and match it up with a sqlite row. So far I have:

number = (arc4random()%8)+1;
NSString *string = [NSString stringWithFormat:@"%i",number];
_label.text = string;

I'm confused on how I take this random number and match it with sqlite? I'm trying to display "recipe.name". Also, how could I incorporate "count" into this so that it limits the random number by the number of rows in the sqlite table?

Thanks in advance!

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

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

发布评论

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

评论(1

万人眼中万个我 2024-10-31 19:45:28

您可以使用以下方法来做到这一点

int randumNumber = RandomNumber() % numberOFRows;

You can use the following method to do that

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