我有幾個字符串。
如何從可用字符串中選擇一個隨機字符串
NSString *st1 = @"png1";
NSString *st2 = @"png2";
NSString *st3 = @"png3";
而且我有一個SKTexture
。
SKTexture *Texture = [SKTexture textureWithImageNamed: @"????"];
如何選擇一個隨機字符串從st1
,st2
和st3
在 「????」。
我試過arc4random
,它只能用整數,但是用字符串我無法解決我的問題。
任何人都可以幫助我嗎?感謝您的回答。
'[NSString的stringWithFormat:@ 「ST%d」,integerValueFromArc4Random];' –