ios提示框汇总

1)

 //接收的数据

    UIAlertView *alert=[[UIAlertView alloc] initWithTitle:@"提示" message:results delegate:self cancelButtonTitle:@"关闭" otherButtonTitles:nil];

    [alert show];

    [alert release];


你可能感兴趣的:(ios)