私は、私はこのリークメモリリーク使用して多次元配列
CGRectを削除する方法DNT iphoneで作業されていないため、これによるリークアプリに私は、これらのリークを削除する必要があり、その多次元可変配列でmemoery漏れを得ましたbounds = [自己境界];
UITouch* touch = [[event touchesForView:self] anyObject];
if (firstTouch) {
firstTouch = NO;
previousLocation = [touch previousLocationInView:self];
previousLocation.y = bounds.size.height - previousLocation.y;
NSMutableArray *temp=[[NSMutableArray alloc]init];
[undo addObject:temp];
/***** add 1st point *********/
[[undo objectAtIndex:[undo count] -1] addObject:[NSValue valueWithCGPoint:previousLocation]];
if(mcount==1)
{
[masking addObject:[[NSMutableArray alloc]init]];
[[masking objectAtIndex:[masking count]-1] addObject:[NSValue valueWithCGPoint:previousLocation]];
}
} else {
location = [touch locationInView:self];
location.y = bounds.size.height - location.y;
previousLocation = [touch previousLocationInView:self];
previousLocation.y = bounds.size.height - previousLocation.y;
[[undo objectAtIndex:[undo count] -1]addObject:[NSValue valueWithCGPoint:previousLocation]];
if(mcount==1)
{
[[masking objectAtIndex:[masking count]-1] addObject:[NSValue valueWithCGPoint:previousLocation]];
}
}
する
を変更することができるということです。あなたの質問は何ですか?何を試しましたか?あなたはそれを全部絞り込んだのですか?この情報を追加するには、質問を編集してください。 –