gpt4 book ai didi

objective-c - 在 if 语句中组合 contentOffset? iOS

转载 作者:行者123 更新时间:2023-11-29 04:49:55 25 4
gpt4 key购买 nike

基本上我想弄清楚的是如何编写以下内容:

//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;

关于objective-c - 在 if 语句中组合 contentOffset? iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9004557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com