• 创建按钮的两种方法


    1、动态创建

     btnfont = [UIButton buttonWithType:UIButtonTypeRoundedRect];
         [btnfont setFrame:CGRectMake(1001012040)];
         [btnfont addTarget:self action:nil forControlEvents:UIControlEventTouchUpInside];
         [btnfont setTitle:@"字体" forState:UIControlStateNormal];
         btnfont.backgroundColor=[UIColor clearColor];
         [self.view addSubview:btnfont];
     

      

    2、在xib文件中已经创建好,通过tag获取按钮 

    UIButton *testButton= (UIButton*)[self.view viewWithTag:100];
        [testButton addTarget:self action:@selector(test:) forControlEvents:UIControlEventTouchUpInside];

      

    注册事件

    -(void) test: (id) sender{
        UIAlertView *av = [[[UIAlertView alloc] initWithTitle:@"ceshi" message:@"test11111" delegate:nil cancelButtonTitle:@"OK"otherButtonTitles:nil] autorelease];
        [av show];
    }

      

  • 相关阅读:
    python练习--1、简易登录接口
    python--1、入门
    mysql数据库安装
    第八章总结
    第七章总结
    第三周总结
    第二周总结
    if、switch语句
    2章总结
    1月14日总结
  • 原文地址:https://www.cnblogs.com/weifeng/p/2200189.html
Copyright © 2020-2023  润新知