怎样用objective-c2.0语言编写一个程序,程序运行后,单击hello按钮,弹出一个提示框?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样用objective-c2.0语言编写一个程序,程序运行后,单击hello按钮,弹出一个提示框?相关的知识,希望对你有一定的参考价值。
用xcode在mac下编写,view中间放个按钮,标题为hello,按钮添加touch up inside事件,事件中创建一个UIAlertView,然后弹出就可以了。 参考技术A uiAlertView *alertView = [[uiAlertViewalloc]initWithTitle:@""
message:@""
delegate:self
cancelButtonTitle:nil
otherButtonTitles:nil];
[alertView show];
[alertView release]; 参考技术B 上面两位答案非常标准!
以上是关于怎样用objective-c2.0语言编写一个程序,程序运行后,单击hello按钮,弹出一个提示框?的主要内容,如果未能解决你的问题,请参考以下文章