随机数 sqlite iphone
我正在尝试获取一个随机数并将其与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下方法来做到这一点
You can use the following method to do that