は、次のように書く方法です:if文でcontentOffsetを結合していますか? iOSの私が把握しようとしていますどのような基本的
//pseudo-code
if (the x value for contentOffset is equal to
a figure between, say, 50 and 100) {
then a specific void is to be executed.
}
ありがとう!
は、次のように書く方法です:if文でcontentOffsetを結合していますか? iOSの私が把握しようとしていますどのような基本的
//pseudo-code
if (the x value for contentOffset is equal to
a figure between, say, 50 and 100) {
then a specific void is to be executed.
}
ありがとう!
CGPoint offsetPoint = myScrollView.contentOffset;
float offset = sqrtf(powf(offsetPoint.x,2)+(powf(offsetPoint.y,2));
if (50 < offset && offset < 100) {
[self myMethod];
}
か、一方向にのみ関心がある場合、私は質問を理解してわからないんだけど
CGFloat offset = myScrollView.contentOffset.y;
、縦に言います。 'if(contentOffset.x> = 50 || contentOffset.x <= 100){}'のような意味ですか?何を求めているのですか? – Saphrosit