zoukankan      html  css  js  c++  java
  • 不可深究啊,

    -(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++;

            }

        }

        

    }

     

  • 相关阅读:
    golang image库的使用
    http1.0/1.1/2.0/h2c/golang使用随笔
    3、逻辑回归 && 正则化
    1、Batch Normalization
    5、极大似然估计
    4、交叉熵与softmax
    2、卷积核,感受野
    Vue学习
    Qeios、github、overleaf、paperwithcode, 越来越多的web云端工具
    投稿遇到的arxiv论文引用问题的办法
  • 原文地址:https://www.cnblogs.com/guligei/p/4573863.html
Copyright © 2011-2022 走看看