美文网首页
循环创建button、label、imageView

循环创建button、label、imageView

作者: Qy_iOS | 来源:发表于2018-06-12 14:14 被阅读0次

    for (int i = 0; i < _imageArr.count; i++) {

            _fristnumBtn = [UIButton buttonWithType:UIButtonTypeCustom];

            _fristnumBtn.frame = CGRectMake(42*unitPX+i*121*unitPX, 15*unitPX, 30*unitPX, 30*unitPX);

    //        _fristnumBtn.backgroundColor = [UIColor blackColor];

            [_fristnumBtn setImage:[UIImage imageNamed:_imageArr[i]] forState:0];

            _fristnumBtn.tag = 500+i;

            [_fristnumBtn addTarget:self action:@selector(myPushVC:) forControlEvents:UIControlEventTouchUpInside];

            [_bjView addSubview: _fristnumBtn];

        }

    相关文章

      网友评论

          本文标题:循环创建button、label、imageView

          本文链接:https://www.haomeiwen.com/subject/adgleftx.html