Mobile/iOS
[iOS]8.0에서 사라진 UIActionSheet
out of coding
2016. 3. 2. 13:26
8.0에서 UIActionSheet가 사라졌습니다.
UIAlertController로 통합이 되었다고 하네요.
다음과 같이 코딩하면 됩니다.
UIAlertController* controller = [UIAlertController alertControllerWithTitle:@"Select" message:nil preferredStyle:UIAlertControllerStyleActionSheet];
[controller addAction:[UIAlertAction actionWithTitle:@"One" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action) {
}]];
[controller addAction:[UIAlertAction actionWithTitle:@"Two" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action) {
}]];
[controller addAction:[UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:nil]];
[self showViewController:controller sender:nil];