Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to add padding to all of my buttons, so I subclassed UIButton, and among other changes, I wanted to add a fixed padding by using setFrame:. Everything was working, except for setFrame. I checked around, and I found out that if I uncheck "using AutoLayout" on that view, then I can use setFrame, and it works. Is there a way around this? I really want to use autolayout, because it helps in making the app look nice on both iphone 5 and earlier devices. But I also would like to use setFrame in my subclass, to make my life a litle easier.

So summed up my question is: Can I use autolayout and also adjust the frame of a UIView programmaitcally?

share|improve this question
Bueller? I guess it's impossible. – KKendall Nov 2 '12 at 3:44

2 Answers

up vote 1 down vote accepted

I'm fairly certain that this can't be done. You'll have to use constraints to programmatically adjust your View.

share|improve this answer

Yes, this can be done.

If translatesAutoresizingMaskIntoConstraints==YES, then calls to setFrame: at runtime are automatically translated into new constraints.

However, you need to make sure they are translated into constraints that can be satisfied with the rest of your constraints. And, unsurprisingly, translatesAutoresizingMaskIntoConstraints will also cause new constraints to be added based on the view's autoresizingMask.

More details are in the section "Adopting Auto Layout" in Apple's Cocoa AUto Layout Guide.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.