Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

xcode - cannot find an initializer for type 'String' that accepts an argument list of type '(format: String, argument: UInt32

I created a playground in Xcode 6.3 (6D570) and input these following code:

import UIKit
var randum_num = arc4random_uniform(13) + 1
String(format: "card%i", arguments: randum_num)

And I got this error:

cannot find an initializer for type 'String' that accepts an argument list of type '(format: String, argument: UInt32

Sorry I'm complete new in Swift, thanks for any advices!

P.S. I'm following this tutorial: link

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You just have to omit "arguments:". Try like this:

let randum_num = arc4random_uniform(13) + 1
String(format: "card%i",  randum_num)

or simply

String(format: "card%i",  arc4random_uniform(13) + 1)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...