Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8917343
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:27:41+00:00 2026-06-15T05:27:41+00:00

I have a NSTextField as a label, showing a string. I want to animate

  • 0

I have a NSTextField as a label, showing a string.
I want to animate this label from right to left, if the content of it is too large to be displayed at once.

I’ve done this with an NSTimer so far, it works, but it’s just not a very good solution.
The labels are displayed in an NSTextFieldCell, in a Table View.
They often get out of sync, and I guess it’s just eating up a lot of CPU/GPU resources.

Is there another way with Core Animation to do this?

I have tried it with layers, as you can see right here:
CALayer and drawRect

but I didn’t get it working either.

I would really appreciate your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T05:27:42+00:00Added an answer on June 15, 2026 at 5:27 am

    You can simply animate the position of NSTextField with animator like

    [[textField animator] setFrameOrigin:NSMakePoint(x,y)];
    

    you can also embed it in “CATrancation” code like this:

    [CATransaction begin];
    [CATransaction setAnimationDuration:0.5];
    [CATransaction setAnimationTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];
    [[textField animator] setFrameOrigin:NSMakePoint(x,y)];
    [CATransaction commit];
    

    if you need animation delegate, you can use CABasicAnimation

    CABasicAnimation* animation = [CABasicAnimation animation];
    animation.delegate = self;
    NSDictionary *animations = [NSDictionary dictionaryWithObjectsAndKeys:animation,@"frameOrigin",nil]; 
    [textField setAnimations:animations];
    [[textField animator] setFrameOrigin:NSMakePoint(x,y)];
    

    Delegate methods are

    - (void)animationDidStart:(CAAnimation *)theAnimation;
    - (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag;
    

    If you need to mask your text field, just embed it in other NSView.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

so here is the deal: I have a label (NSTextField) that I want to
Right now I have a dictionary containing a string value and an NSTextField in
I have a window containing three NSTextField s, like this: +------------------------+ | +--------------------+ |
I have a custom view with several NSTextField controls for which I want to
I have a NSTextField Label that has attributed text in it. The color and
I have an NSTextField label whose value is bound to controller.status When I call
I have a NSTextField bound to my model. If I change the content of
I have this managedObject subclass, position rappresent a NSPoint. In a XIB I want
I have a NSTextField (Label) in a NSView . Value in the label changes
I have two NSTextfield, and I want to use the same method for each

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.