我想一個隨機整型數字轉換在NSString
然後分配的NSString另一NSString
但它崩潰INT轉換成的NSString
我做了以下
int mynumber =(arc4random() % 1000);
unique = [NSString stringWithFormat:@"%d",mynumber];
NSLog(unique)
NSString*test=unique;
它使崩潰的應用程序當我寫最後一行時;
它還打印值,當我nslog unique
字符串。
參見:[http://stackoverflow.com/questions/3574632] [1]:http://stackoverflow.com/questions/3574632/how-to-convert-an-int-to-nsstring –