Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对不起,如果这听起来很简单。我是 Cocos2d 和 Obj-C 的新手。我想将一种方法中精灵的 CGPoint 值与另一种方法中计算的值进行比较。如何在同一类中从一种方法访问此值到另一种方法?
将其传递给方法或声明一个私有属性来保存该值:
@property (nonatomic, assign) CGPoint myCGPoint;
然后在实现文件中合成:
@synthesize myCGPoint;