iOS警报(UIAlertView)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS警报(UIAlertView)相关的知识,希望对你有一定的参考价值。
/* Simple alert for ios applications */ // Alloc and init the alert object UIAlertView *alert = [[UIAlertView alloc] // Alert window title initWithTitle: NSLocalizedString(@"",nil) // Message that will be displayed message: NSLocalizedString(@"",nil) // UIAlertView delegate (No protocol conformance required) delegate: self // Text for the main button cancelButtonTitle: NSLocalizedString(@"No",nil) // A second button or just nil for none otherButtonTitles: NSLocalizedString(@"Yes",nil), nil]; // Display the alert [alert show]; // Release the object [alert release];
以上是关于iOS警报(UIAlertView)的主要内容,如果未能解决你的问题,请参考以下文章