• 不可深究啊,


    -(void)resetRoomBtn

    {

        [[_mctView viewWithTag:2000]removeFromSuperview];

        CGFloat kWidth = (screenW-20)/4;

        NSInteger arrayCount = _roomImgArray.count;

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

            ImageInfo *info = [_roomImgArray objectAtIndex:i];

     

            NSInteger column = arrayCount%4;//

            NSInteger row = arrayCount/4;//

            UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];

            btn.frame = CGRectMake(column*kWidth,row*kWidth, kWidth, kWidth);

            [btn.imageView setContentMode:UIViewContentModeScaleAspectFill];

            btn.tag = 2000;

            if (info.isLast) {

                [btn setImage:info.mImage forState:UIControlStateNormal];

                [btn addTarget:self action:@selector(pressPicBtn:) forControlEvents:UIControlEventTouchUpInside];

            }else{

                [btn addTarget:self action:@selector(showDeletePicAction:) forControlEvents:UIControlEventTouchUpInside];

            }

            if (info.mImage) {

                [btn setImage:info.mImage forState:UIControlStateNormal];

            }else{

                [btn sd_setImageWithURL:[NSURL URLWithString:info.imageUrl] forState:UIControlStateNormal];

            }

            [_mctView addSubview:btn];

            _mctView.frame = CGRectMake(0, _mctView.frame.origin.y, screenW, row*kWidth);

            TTLog(@"%@%@",btn,_mctView);

            

        }

        

     

        

        

        _middleView.frame = CGRectMake(0, _mctView.frame.size.height+_mctView.frame.origin.y, screenW, _middleView.frame.size.height);

        _licenceView.frame = CGRectMake(0, _middleView.frame.size.height+_middleView.frame.origin.y, screenW, _licenceView.frame.size.height);

        

    }

     

     

    -(void)resetLicenceBtn

    {

        [[_licenceView viewWithTag:1000]removeFromSuperview];

        CGFloat kWidth = (screenW-20)/4;

        NSInteger column = _licenceImgArray.count%4;//

        NSInteger row = _licenceImgArray.count/4+1;//

        int index = 0;

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

            for (int j=0; j<column; j++) {

                ImageInfo *info = [_licenceImgArray objectAtIndex:index];

                UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];

                btn.frame = CGRectMake(j*kWidth, i*kWidth, kWidth, kWidth);

                [btn.imageView setContentMode:UIViewContentModeScaleAspectFill];

                btn.tag = 1000;

     

                if (info.isLast) {

                    [btn addTarget:self action:@selector(pressPicBtn:) forControlEvents:UIControlEventTouchUpInside];

                }else{

                    [btn addTarget:self action:@selector(showDeletePicAction:) forControlEvents:UIControlEventTouchUpInside];

                }

                

                if (info.mImage) {

                    [btn setImage:info.mImage forState:UIControlStateNormal];

                }else{

                    [btn sd_setImageWithURL:[NSURL URLWithString:info.imageUrl] forState:UIControlStateNormal];

                }

                [_licenceView addSubview:btn];

                _licenceView.frame = CGRectMake(0, _licenceView.frame.origin.y, screenW, row*kWidth);

                TTLog(@"%@%@",btn,_licenceView);

                index++;

            }

        }

        

    }

     

  • 相关阅读:
    古代军队的官的从大到小的排序
    [转]DAO、RDO、ADO、OLE DB 、ODBC and JDB
    JSP页面之间参数传递中文出现乱码
    重置VS2008插件环境
    PB7中调用VC6的DLL
    Visual Studio统计有效代码行数
    php.ini 中文版
    IDEA Plugin JB* Components
    [转]你还在为怎么查看字节码指令而担忧吗?
    战地2, 2142解决Win10运行闪退问题
  • 原文地址:https://www.cnblogs.com/guligei/p/4573863.html
Copyright © 2020-2023  润新知