ios开发button点击弹出提示,代码怎么写?

 我来答
十人魔法师
推荐于2016-09-15 · TA获得超过132个赞
知道答主
回答量:97
采纳率:0%
帮助的人:65.5万
展开全部
按钮代码
UIButton *myButton = [UIButton buttonWithType:UIButtonTypeCustom];

[myButton setTitle:@"求最佳哦~" forState:UIControlStateNormal];

[myButton setTitle:@"可以松手~" forState:UIControlStateHighlighted];

[myButton addTarget:self action:@selector(myButton:) forControlEvents:UIControlEventTouchUpInside];

myButton.backgroundColor = [UIColor yellowColor];

myButton.bounds = CGRectMake(0, 0, 200, 100);

myButton.center = CGPointMake(self.view.frame.size.width/2, self.view.frame.size.height/2);

[self.view addSubview:myButton];

按钮响事件函数

-(void)myButton:(UIButton *)sender{

UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"按钮点击提示" delegate:self cancelButtonTitle:@"确定" otherButtonTitles: nil];

[myAlertView show];

}

不懂的追问
追问
那面 那部分按钮代码写在 哪个函数里面?.h文件里要怎么写?,还弹不出来?
追答
按钮写在viewdidload
口袋里的暴雪
2013-11-07
知道答主
回答量:8
采纳率:0%
帮助的人:1万
展开全部
UIAlertView *alert=[[[UIAlertView alloc] initWithTitle:nil message:@"XXX" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"XX", nil] autorelease];
[alert1 show];
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式