How to rotate NSButton in clockwise direction from its center point in Cocoa?

Multi tool use
How to rotate NSButton in clockwise direction from its center point in Cocoa?
I want to set animation for NSButton in my mac application.
I followed the below link for the same, but below code is working for iOS, not for Mac.
How to rotate a flat object around its center in perspective view?
What I want to achieve:
Basically, I want to rotate an image clockwise from the center point of the image just like the above code works for iOS.
Issue currently having:
In Mac app, the image is rotating from its corner point, not from the center.
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
animation.fromValue = [NSNumber numberWithFloat:0];
animation.toValue = [NSNumber numberWithFloat:2 * M_PI];
animation.duration = 1.0;
animation.repeatCount = INFINITY;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
[btnScan setWantsLayer:YES];
[btnScan.layer addAnimation:animation forKey:@"transform.rotation.z"];
1 Answer
1
The point around which rotation occurs is affected by the layer's position
and anchorPoint
properties, see Anchor Points Affect Geometric Manipulations. The default values for these properties do not appear to match the documentation, at least under macOS 10.11 and whichever version you used.
position
anchorPoint
Try setting them by adding four lines as follows:
[btnScan setWantsLayer:YES];
CALayer *btnLayer = btnScan.layer;
NSRect frame = btnLayer.frame;
btnLayer.position = NSMakePoint(NSMidX(frame), NSMidY(frame)); // position to centre of frame
btnLayer.anchorPoint = NSMakePoint(0.5, 0.5); // anchor point to centre - specified in unit coordinates
[btnScan.layer addAnimation:animation forKey:@"transform.rotation.z"];
It doesn't actually matter in which order you set these properties the result should be an image rotation around the centre point of the button.
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Thank you so much for your answer. This is working absolutely fine.
– swapnil patel
Jun 30 at 13:04