Re: iOS 7 GUI update lag during drag touches
Re: iOS 7 GUI update lag during drag touches
- Subject: Re: iOS 7 GUI update lag during drag touches
- From: Carl Hoefs <email@hidden>
- Date: Thu, 03 Oct 2013 13:32:05 -0700
Thanks, Julius! Now there's no response lag at all!
- Carl
On Oct 3, 2013, at 1:11 PM, Julius Oklamcak <email@hidden> wrote:
>> CGPoint apoint=[[touches anyObject] locationInView:[self view]];
>> [layer setPosition:apoint];
>
> You need to disable implicit CALayer animation(s):
>
> [CATransaction begin];
> [CATransaction setDisableActions:YES];
> [layer setPosition:apoint];
> [CATransaction commit];
>
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden