二項演算子を使用して 2 つの値を比較しようとしています。
character = (xxx as NSString).characterAtIndex(2)
if character == "1" {
//do this thingy
}
ここで、エラー メッセージ Binary Operator '==' cannot be applied to operands of type unichar or String. が表示されます。私はまた、文字を変換しようとしました:
if String(character) == "1"
動作しません...