在多个方法中使用实例变量

时间:2009-12-30 18:38:49

标签: cocoa-touch

如何保存实例,以便我可以在另一种方法中使用它? 这是我的代码:

- (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变量。我该怎么做?

1 个答案:

答案 0 :(得分:1)

只需将其作为类本身的成员变量 - 然后另一种方法就可以访问它。