如何保存实例,以便我可以在另一种方法中使用它? 这是我的代码:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
CGPoint touchedStart;
// find position of the touch
touchedStart = [[touches anyObject] locationInView:self];
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
CGPoint touchedEnd;
// find position of the touch
touchedEnd = [[touches anyObject] locationInView:self];
}
我希望能够在touchedStart
方法中使用touchesEnded
变量。我该怎么做?
答案 0 :(得分:1)
只需将其作为类本身的成员变量 - 然后另一种方法就可以访问它。