if else语句随机选择

时间:2014-01-14 07:37:06

标签: objective-c if-statement

我想知道是否可以在if / else语句中创建某种类型的语句,该语句可以从不同的值中随机选择 -

像这样:

if ([white.number floatValue] >= 15.0f) {
             [forcastLabel setText:@"Good!"]; OR STATEMENT - [forcastLabel setText:@"BRILLIANT"];

1 个答案:

答案 0 :(得分:1)

你可以试试这样:)

NSInteger randomNumber = arc4random() % 2;

if ([white.number floatValue] >= 15.0f) {
         randomNumber > 0 ? [forcastLabel setText:@"Good!"] : [forcastLabel setText:@"BRILLIANT"];

还有很多其他方法可以实现你想要的只是其中之一。