這裏是我的代碼:組合兩個NSString的和一些
NSString *targetPath [email protected]"/Users/miguelcosta/Desktop/Image.png";
在此的NSString我想要做這樣的事情:
NSString *targetPath [email protected]"/Users/miguelcosta/Desktop/Image", RandomNumber + @"png";
我怎麼能這樣做?
這裏是我的代碼:組合兩個NSString的和一些
NSString *targetPath [email protected]"/Users/miguelcosta/Desktop/Image.png";
在此的NSString我想要做這樣的事情:
NSString *targetPath [email protected]"/Users/miguelcosta/Desktop/Image", RandomNumber + @"png";
我怎麼能這樣做?
假設你的隨機數是int,你可以使用下面的
NSString* fullPath = [NSString stringWithFormat:@"/Users/miguelcosta/Desktop/Image%d.png", random];
'+ [NSString的stringWithFormat:]'究竟存在這方面的 – Sulthan
@sulthan:作出回答。 –