• 循环按钮,并且选中 (附效果图)


    效果图

    以下代码均可全部复制,直接到上图的效果图

    #import "ViewController.h"

    @interface ViewController ()

    //设置属性

    @property (nonatomic,strong)NSMutableDictionary *aihao;

    @property (nonatomic,strong)UILabel *carheard;

    @end

    @implementation ViewController

    - (void)viewDidLoad {

        [super viewDidLoad];

        

        [self creatUI];

    }

    #define Screen  [UIScreen mainScreen]

    -(void)creatUI

    {

        NSArray* citys = @[@"旅游",@"汽车",@"房产",@"美食",@"上网",@"投资",@"体育运动",@"影视",@"电影",@"户外",@"阅读"];

        self.aihao = [NSMutableDictionary dictionary];

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

            UILabel* carheard;

            carheard = [[UILabel alloc]initWithFrame:CGRectMake((i%4)*Screen.bounds.size.width/4+30, (i/4)*Screen.bounds.size.height/15+50 , Screen.bounds.size.width/4, 30)];

            

            UIButton* select = [[UIButton alloc]initWithFrame:CGRectMake(carheard.frame.origin.x-20,carheard.frame.origin.y+8,15,15)];

            [select setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];

            [select addTarget:self action:@selector(selectedion:) forControlEvents:UIControlEventTouchUpInside];

            [select setBackgroundImage:[UIImage imageNamed:@"xuanze_default_03"] forState:UIControlStateNormal];

            [carheard setText:citys[i]];

            [carheard setBackgroundColor:[UIColor whiteColor]];

            [carheard setFont:[UIFont systemFontOfSize:14]];

            [self.view addSubview:carheard];

            [self.view addSubview:select];

        }

    }

    -(void)selectedion:(UIButton*)sender{

        if(sender.selected)

        {

            [sender setSelected:NO];

            [sender setBackgroundImage:[UIImage imageNamed:@"xuanze_default_03"] forState:UIControlStateNormal];

            [self.aihao removeObjectForKey:sender.titleLabel.text];

            

        }else{

            [sender setSelected:YES];

            [sender setBackgroundImage:[UIImage imageNamed:@"xuanze_hover_69"] forState:UIControlStateNormal];

        }

        NSLog(@"%@",self.aihao);

    }

  • 相关阅读:
    第二阶段冲刺之站立会议5
    第二阶段冲刺之站立会议4
    第二阶段冲刺之站立会议3
    “加减乘除”使用说明
    第二阶段冲刺之站立会议2
    Kali学得好,监狱蹲到老,最新版Kali 2020
    【Linux】Centos7密码登录失败锁定设置_20200313
    【Linux】如何设置Linux开机 ,默认进入图形界面或命令行界面?
    【Linux】使用 PXE+Kickstart 无人值守批量安装系统
    【Linux】Linux修改openfile和max user processes?
  • 原文地址:https://www.cnblogs.com/liaolijun/p/4565233.html
Copyright © 2020-2023  润新知