我有一个 UIImageView 对象,我正在尝试获取其 x 坐标。我用下面的代码做到这一点
endingPoint.x = myObject.center.x;
现在,如果我在试图循环并获取每个对象的 x 坐标的数组中有相同的 UIImageView,我该怎么做?
endingPoint.x = [posArray objectAtIndex:i].center.x;
我知道这是一个新手问题,但我刚刚开始使用 iOS。
Best Answer-推荐答案 strong>
你很亲密。 objectAtIndex: 但是,返回类型为 id 的对象(指向任何东西的通用指针),所以你不能在它上面调用 .center (属性) .
您必须使用括号符号向它发送消息,如下所示:
endingPoint.x = [[posArray objectAtIndex:i] center].x;
或cast首先将值转换为(UIImageView *):
endingPoint.x = ((UIImageView *)[posArray objectAtIndex:i]).center.x;
关于objective-c - 获取数组中对象的 x、y 坐标,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/9389117/
|