(1)最基本的样式:就一个标题,一行描述信息,一个YES按钮,一个NO按钮;
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Hehe" message:@"这是一行描述信息" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alertView show];
(2)
(3)
(4)
(5)
(6)
(7)
(8)
(9)
时间: 2024-10-13 19:55:36