如何发送提醒

时间:2011-03-29 22:13:12

标签: iphone objective-c

如何在目标c中编写警报消息。如果用户在应用程序中选择了错误的颜色,则为Xcode。

4 个答案:

答案 0 :(得分:2)

Apple Documentation是一件很棒的事情: - )

答案 1 :(得分:1)

您需要使用UIAlertView课程。这是一个例子:

UIAlertView *alert = [[UIAlertView alloc]
                      initWithTitle: @"Wrong Color"
                      message: @"You chose the wrong color."
                      delegate: nil
                      cancelButtonTitle:@"OK"
                      otherButtonTitles:nil];
[alert show];
[alert release];

答案 2 :(得分:1)

以下是一个例子:

UIAlertView *alert = [[UIAlertView alloc]
            initWithTitle: @"Announcement"
            message: @"You chose the wrong color!"
            delegate: nil
            cancelButtonTitle:@"OK"
            otherButtonTitles:nil];
[alert show];
[alert release];

答案 3 :(得分:0)

听起来你正在寻找UIAlertView