zoukankan      html  css  js  c++  java
  • iOS UIButton加在window上点击无效果问题

    UIButton加在window上,点击没有效果,找了很久,原来是没有加上这名:[self.window makeKeyAndVisible];

    self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen] bounds]];
        ViewController *vc = [[ViewController alloc] init];
        self.window.rootViewController = vc;
        self.window.backgroundColor = [UIColor whiteColor];
        [self.window makeKeyAndVisible];
        
        view1 = [[UIView alloc] initWithFrame:CGRectMake(60, 200, 200, 100)];
        view1.backgroundColor = [UIColor blueColor];
        [self.window addSubview:view1];
        
        UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(60, 200, 50, 150)];
        view2.backgroundColor = [UIColor yellowColor];
        [self.window addSubview:view2];
        
        
        UIView *view3 = [[UIView alloc] initWithFrame:CGRectMake(60, 400, 200, 100)];
        view3.backgroundColor = [UIColor redColor];
        [self.window addSubview:view3];
        
        UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        button.frame = CGRectMake(60, 510, 100, 35);
        button.userInteractionEnabled = YES;
        button.backgroundColor = [UIColor greenColor];
        [button setTitle:@"change" forState:UIControlStateNormal];
        [button addTarget:self action:@selector(changeView) forControlEvents:UIControlEventTouchUpInside];
        [self.window addSubview:button];
        NSLog(@"%@",self.window.subviews);
    - (void)changeView
    {
        [self.window bringSubviewToFront:view1];
         NSLog(@"%@",self.window.subviews);
    }

    不要直接加在window上,加在ViewController view上点击有效果

    view1 = [[UIView alloc] initWithFrame:CGRectMake(60, 200, 200, 100)];
        view1.backgroundColor = [UIColor blueColor];
        [self.view addSubview:view1];
        
        UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(60, 200, 50, 150)];
        view2.backgroundColor = [UIColor yellowColor];
        view2.tag = 2;
        [self.view addSubview:view2];
        
        
        UIView *view3 = [[UIView alloc] initWithFrame:CGRectMake(60, 400, 200, 100)];
        view3.backgroundColor = [UIColor redColor];
        [self.view addSubview:view3];
        
        UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        button.frame = CGRectMake(60, 510, 100, 35);
        button.userInteractionEnabled = YES;
        button.backgroundColor = [UIColor greenColor];
        [button setTitle:@"change" forState:UIControlStateNormal];
        [button addTarget:self action:@selector(changeView) forControlEvents:UIControlEventTouchUpInside];
        [self.view addSubview:button];
        NSLog(@"%@",self.view.subviews);
    - (void)changeView
    {
        [self.view bringSubviewToFront:view1];
        UIView *view = [self.view viewWithTag:2];
        view.backgroundColor = [UIColor purpleColor];
        NSLog(@"%@",self.view.subviews);
    }

  • 相关阅读:
    Dialog中添加多选按钮CheckBox
    把格式日期转换成毫秒
    监听EditText输入事件
    浅析LocationManager的位置定位
    Android 字体设置
    Android开发之InstanceState详解
    Bash中自动补全时忽略大小写
    51与PC通信协议设计及实现(九):更深入的扩展
    推到重做
    51与PC通信协议设计及实现(五):问题收集解决随笔
  • 原文地址:https://www.cnblogs.com/ycclmy/p/5631496.html
Copyright © 2011-2022 走看看