[iOS]Swift1.2で発生したエラーCannot invoke 'split' with an argument list of type

let bits = split(value!, { $0 == " "})

Missing argument for parameter 'isSeparator' in call


let bits = split(value!, { $0 == " "}, maxSplit: Int.max, allowEmptySlices: false)

Cannot invoke 'split' with an argument list of type '(String, (_) -> _, maxSplit: Int, allowEmptySlices: Bool)'
2015-06-12 15:13 コメント
已邀请:
0

iQi - 面白いアプリを開発中

{ 賛成 }:

let bits = split(value!, maxSplit: Int.max, allowEmptySlices: false, isSeparator: { $0 == " "})

or, using the default values:
let bits = split(value!, isSeparator: { $0 == " "})

or
let bits = split(value!, maxSplit: Int.max, allowEmptySlices: false) { $0 == " " }

or
let bits = split(value!) { $0 == " " }
2015-06-12 15:16 コメント

ログインまたは登録してから回答してください

EXIT フルスクリーンモード 回答