Question

My code to change button size when press:

  [_btnClick setImage:image forState:UIControlStateNormal];
    //  oldPosition =CGPointMake(sender.bounds.origin.x, sender.bounds.origin.y);
  _btnClick.frame = CGRectMake(oldPosition.x+20  , oldPosition.y+10, 500, 500);

but when i press button, just image change and button size not change to new size.

How i fix it. Thank' for help.

Was it helpful?

Solution

In a related question, an explanation is provided. The only thing that seems valid would be to do what the top answer says. Disable Auto layout

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top