博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS自学-监听按钮点击、提醒框
阅读量:5092 次
发布时间:2019-06-13

本文共 1338 字,大约阅读时间需要 4 分钟。

//事件监听的问题    CGRect btn2Frame = CGRectMake(100.0, 150.0, 60.0, 44.0);    //两种不同的方式创建    UIButton *btn2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];    btn2.frame =btn2Frame;    //设置Title    [btn2 setTitle:@"BTN2" forState:UIControlStateNormal];    //[btn2 setBackgroundImage:[UIImage imageNamed:@"pic.png"] forState:UIControlStateNormal];    [btn2 setBackgroundColor:[UIColor blueColor]];    [btn2 addTarget:self action:@selector(btnPressed:) forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:btn2];-(void)btnPressed:(id)sender{    UIButton* btn = (UIButton*)sender;    NSLog(@"====>name");    //    UIButton* thisBtn = (UIButton *)sender;    //    [[[UIAlertView alloc] initWithTitle:@"Button" message:[NSString stringWithFormat: @"This is button:%@ action",thisBtn] delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil] show];    }

 提醒框

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

 

转载于:https://www.cnblogs.com/zhaixing/p/5430061.html

你可能感兴趣的文章
监督学习模型分类 生成模型vs判别模型 概率模型vs非概率模型 参数模型vs非参数模型...
查看>>
Mobiscroll脚本破解,去除Trial和注册时间限制【转】
查看>>
实验五 Java网络编程及安全
查看>>
32位与64位 兼容编程
查看>>
iframe父子页面通信
查看>>
map基本用法
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>