-1
これを実際のコードでどのように書くことができますか?本当にこのif-conditionを書くには?
if (!UIImageView with origin.x > 50.0) {
//Exlcude the imageview from whatever happens in this statement.
}
これを実際のコードでどのように書くことができますか?本当にこのif-conditionを書くには?
if (!UIImageView with origin.x > 50.0) {
//Exlcude the imageview from whatever happens in this statement.
}
if (imageView.frame.origin.x <= 50.0) {
// The code in this block won't bother the image views
// with 'x > 50.0' anymore
}
私はこれをやっていたが、それは正しく動作していなかったので、私は私が何か間違ったことかもしれない考え出しました。 if文に含まれている他のロジックだけで、動作しないということに気付きました。遅かった、私は気が狂った。 ;-) – Jason