Button Wrap Line

Source: Internet
Author: User

UIView *view=[[uiview alloc]initwithframe:cgrectmake (0, Self.view.frame.size.width, 300)];

View.backgroundcolor=[uicolor Graycolor];

[Self.view Addsubview:view];

Nsmutablearray *array=[[nsmutablearray alloc]initwithobjects:@ "Garden Garden", @ "garden", @ "egg garden", @ "Ah ah ah ah", @ "pull", @ "Ah ah ah oh ah", nil];

int i=0;

CGFloat btnh=30;

CGFloat yoffset=10;

CGFloat xoffset=15;

For (NSString *string in array) {

CGRect rect = [string Boundingrectwithsize:cgsizemake (Maxfloat, BTNH) options:nsstringdrawinguseslinefragmentorigin Attributes:@{nsfontattributename:[uifont Systemfontofsize:17]} Context:nil];

CGFloat w = rect.size.width+10;

NSLog (@ "%f", yoffset+w);

if (xoffset+w>self.view.frame.size.width-20) {

xoffset=10;

yoffset+= (BTNH+15);

}

UIButton *button=[uibutton Buttonwithtype:uibuttontypecustom];

Button.titlelabel.font=[uifont Systemfontofsize:17];

[Button settitle:string forstate: (UIControlStateNormal)];

[Button Settitlecolor:[uicolor Blackcolor] forstate: (UIControlStateNormal)];

Click events of your own button

[Button Setbackgroundcolor:[uicolor Whitecolor];

button.layer.cornerradius=5;

Button.clipstobounds=yes;

Button.tag=1000+i;

Button.frame = CGRectMake (Xoffset, Yoffset, W, BTNH);

[View Addsubview:button];

xoffset+= (W+10);

++i;

}

Button Wrap Line

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.