UIAlertView without title

UIAlertView 是支持无标题的。如果传空字符串,即为没有标题,只显示内容;如果传 nil,则会把内容放到标题上。

1、title 传空字符串,即:

1
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"" message:@"您确定要退出此帐号吗?" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确认", nil];

2、title 传 nil,即:

1
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:nil message:@"您确定要退出此帐号吗?" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确认", nil];

另外,如果需要自定义 AlertView 的样式,可以采用开源的 LGAlertView