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];  

    }   

  • 相关阅读:
    [转]Android应用开发提高系列(5)——Android动态加载(下)——加载已安装APK中的类和资源
    [转]Eclipse中配置Struts2并实现HelloWorld
    [转]android4.0.3 修改启动动画和开机声音
    版本管理 Git
    [转]Android动态加载jar/dex
    [转]JSP 9 大内置对象详解
    [转]TMX Map Format Tiled地图格式
    [转]C++按行读取文本文件
    [转]Java——Servlet的配置和测试
    [转]android条形码编解码
  • 原文地址:https://www.cnblogs.com/zyip/p/2695950.html
Copyright © 2011-2022 走看看