I can't set the title of UIButton using IB as center. My title is multi line.
It is giving like this one

But I want like this one

I have given space in this but I don't want to do that. As it is not aligned exactly for some cases and I know there is a property of UILabel to set the alignment but I don't want to write a code for that.. just want to set everything from IB.
Thanks



self.yourButton.titleLabel.textAlignment = UITextAlignmentCenter;– Spark Mar 26 at 7:00