‘UIButton?’ does not have a member named ‘center’
1 2 |
button_.center = CGPointMake(120 + 60, 60) // エラー button_?.center = CGPointMake(120 + 60, 60) // 正解 |
Missing argument for parameter ‘comment’ in call
パラメータ’comment’という引数がありません。呼び出し文で引数が足りない。
1 2 |
label_?.text = NSLocalizedString("Character Select",nil) // エラー label_?.text = NSLocalizedString("Character Select",comment:"comment") // 正解 |
Missing argument for parameter ‘locale’ in call
パラメータ’locale’という引数がありません。呼び出し文で引数が足りない。
1 2 |
var string_:NSString = NSString(array_[1]) // エラー var string_:NSString = String(array_[1] as NSString) // 正解 |
Consecusive statements on a line must be separated by ‘;’
1 |
name_:UIImage = UIImage(named:"nameR.png")! |
type ‘AnyObject’ does not confirm to protocol ‘NilLiteralConvertible’
⇒ nil は入りません
1 2 |
array_ = NSArray( objects:araay1_!,array2_!,nil) // エラー array_ = NSArray( objects:araay1_!,array2_!) // 正解 |
‘NSArray’ does not have a member named ‘count’
1 2 |
for (var i:Int = 0; i < array_.count ; i++){} // エラー for (var i:Int = 0; i < array_?.count ; i++){} // 正解 |
‘NSMutableArray?’ does not have a member named ‘subscript’
1 2 |
'NSMutableArray?'は'subscript'というメンバを持っていません。 解決できず。 |
Cannot invoke ‘〜’ with an argument list of type ‘〜’
与えられた引数の組み合わせでは関数を実行出来ない
全ての変数に型を明記して確かめるのが良さそう。