0
私はこのような方法があります:私はUITouchオブジェクトをリリースする必要がありますか?
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
//Use to animate drag
UITouch *touch = [touches anyObject];
CGPoint currentLocation = [touch locationInView:self];
[self colorDragedOver:currentLocation];
[touch release];
}
は、私がどんな漏れを防ぐためにUITouchまたはするCGPointのいずれかを解放する必要がありますか?
ありがとうございます!
[メモリ管理ルール](http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmRules.html#//apple_ref/doc/uid/20000994-SW1)シンプルで包括的です。 – outis