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 8480215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T19:14:07+00:00 2026-06-10T19:14:07+00:00

I wish to re-size button at the place where it`s located and delay it,

  • 0

I wish to re-size button at the place where it`s located and delay it, can you please help me?
(sender=UIButton)

My function:

-(IBAction)Animate: (id) sender
{

[sender setBackgroundImage:[UIImage imageNamed:@"Text Bg large.png"] forState:UIControlStateNormal];
CABasicAnimation *scale;
scale = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
scale.fromValue = [NSNumber numberWithFloat:1];
scale.toValue = [NSNumber numberWithFloat:1.3];
scale.duration = 1;
scale.removedOnCompletion = NO;

scale.repeatCount = 1;
[sender addAnimation:scale forKey:@""];
[sender setFrame:(CGRectMake(x, y, z, w))];


}

What do i use for x,y,z,w if i wish that button will stay at the same location, and grow 1.3 time larger without entering values manually. Oh, and how i can delay the this operation?

  • 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-10T19:14:08+00:00Added an answer on June 10, 2026 at 7:14 pm

    Is there any reason you’re using CAAnimation to do this?

    How about:

    CGRect newFrame = CGRectInset(sender.frame, CGRectGetWidth(sender.frame) * -0.15, CGRectGetHeight(sender.frame) * -0.15);
    
    [UIView animateWithDuration: 1.0
                          delay: 0.5
                        options: UIViewAnimationOptionCurveLinear
                     animations:^{
                         [sender setFrame: newFrame];
                     }
                     completion: nil];
    

    or

    [UIView animateWithDuration: 1.0
                          delay: 0.5
                        options: UIViewAnimationOptionCurveLinear
                     animations:^{
                         [sender setTransform: CGAffineTransformMakeScale(1.3, 1.3)];
                     }
                     completion: nil];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a square div of fixed size and wish to place an arbitrary
I am scanning a file system and wish to determine the allocated size of
Been googling around but I can't find any help on this. I am trying
I have a UIView that I wish to alter the size and position of
I am designing a web application, and I wish to know the largest size
I wish to keep a button at the bottom of my Activity screen. It
I wish to increase the size of a control whenever the user hovers the
I have an XML file which is about 200MB in size, i wish to
I have a button that I wish to use all throughout my site, but
I wish to get the current size for an image being displayed with TImage,

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.