On iOS, how does one align the button (UIbutton) text to the left? iosuibutton

Source: Internet
Author: User

On iOS, how does one align the button (UIbutton) text to the left? iosuibutton

  1. // Button. titleLabel. textAlignment = NSTextAlignmentLeft; this sentence is invalid.
  2. Button. contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
  3. Button. titleEdgeInsets = UIEdgeInsetsMake (0, 10, 0, 0 );

I am always confused when I am working on the UI interface and how to align the text of the button to the left for display. Today I met again and decided to completely solve this problem.

First, we will think of the following code

Button. titleLabel. textAlignment = NSTextAlignmentLeft; this line of code has no effect. This only makes the text in the label left aligned,

The alignment of labels in the button is not changed.


Therefore, we must first use

Button. contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft; in this line of code, set the content of the button (Control)

The alignment mode of is changed to horizontal left alignment, but these alignment will keep close to the left,

So we can also modify the attributes:

Button. titleEdgeInsets = UIEdgeInsetsMake (0, 8, 0, 0 );

This line of code allows the content (control) of the button to be 8 pixels away from the left and adjusted as needed. It can also be a negative number (-- 8 ).

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.