码迷,mamicode.com
首页 > 移动开发 > 详细

ios for 循环 创建 九宫格

时间:2014-10-25 20:03:58      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   for   sp   on   cti   bs   ad   

    for (int i = 0; i < 6; i ++) {

        

        int n =  20 + i % 3 * 90 + i % 3 * 20;

        int m = 10 + i / 3 * 90 + i / 3 * 20;

        

        UIButton * bun = [UIButton buttonWithType:UIButtonTypeCustom];

        bun.frame = CGRectMake(n, m, 60, 60);

        

        [bun setImage:[UIImage imageNamed:[NSString stringWithFormat:@"%@",[你的数组名字 objectAtIndex:i]]] forState:UIControlStateNormal];

        bun.tag = i + 1000;

        [bun addTarget:self action:@selector(buttonSix:) forControlEvents:UIControlEventTouchUpInside];

        

        [aView addSubview:bun];

 }

 

 

这是设置出来显示的是2行3列的九宫格。

ios for 循环 创建 九宫格

标签:io   os   ar   for   sp   on   cti   bs   ad   

原文地址:http://www.cnblogs.com/zgfblog/p/4050499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!