弹出提示窗口

来源:互联网 发布:微商为什么比淘宝贵 编辑:程序博客网 时间:2024/05/16 12:46

UIAlertView *myAlert = [[UIAlertView alloc]initWithTitle:@"显示时间" message:tmpStr delegate:self cancelButtonTitle:@"取消" otherButtonTitles:nil];  

//AlertView弹出  

 [myAlert show];