zoukankan      html  css  js  c++  java
  • objectivec 把所有类型为UIButton的子控件放在父视图中央 动态创建按钮

        for(UIView *view in [self.backgroundView subviews])
        {
            //[view removefromsuperview];
            if([[[view superclass] description] isEqualToString:@"UIButton"])
            {
                UIButton * btn=(UIButton*) view;
                btn.titleLabel.text=@"dynamic title";
                btn.center=btn.superview.center;
            }
        }
    - (IBAction)addButton:(id)sender {  
        CGRect frame = CGRectMake(9020020060);  
        UIButton *someAddButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];  
        someAddButton.backgroundColor = [UIColor clearColor];  
        [someAddButton setTitle:@"动态添加一个按钮!" forState:UIControlStateNormal];  
        someAddButton.frame = frame;  
        [someAddButton addTarget:self action:@selector(someButtonClicked) forControlEvents:UIControlEventTouchUpInside];  
        [self.view addSubview:someAddButton];  

    }  

    -(void) someButtonClicked{    
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示"   
                                                        message:@"您点击了动态按钮!"     
                                                       delegate:self     
                                              cancelButtonTitle:@"确定"    
                                              otherButtonTitles:nil];    
        [alert show];  

    }   

  • 相关阅读:
    悲悯心洞悉真相
    查看逍遥模拟器端口号
    delphi中Tstringlist分割字符串的用法
    delphi中httpencode使用注意事项
    DELPHI常用类型及定义单元
    左旋转字符串
    链表中倒数第k个节点
    二叉树镜像
    用两个栈实现队列
    从尾到头打印链表
  • 原文地址:https://www.cnblogs.com/zyip/p/2695950.html
Copyright © 2011-2022 走看看