Doarchive

[objectiveC] Current view에 alert 띄우기 본문

Mobile/iOS

[objectiveC] Current view에 alert 띄우기

오순발닦개 2020. 9. 1. 09:53
1
2
3
4
5
6
7
8
9
UIAlertView *currentAlertView;
 
[currentAlertView dismissWithClickedButtonIndex:0 animated:YES];
 
currentAlertView = [[UIAlertView alloc] initWithTitle:@"" message:@"Device must be rebooted due to roading error." delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
 
[currentAlertView show];
 
cs

 

728x90