IOS 개발 UIAlertController 상세 설명 및 인 스 턴 스 코드

1814 단어 IOSUIAlertController
IOS 개발 UIAlertController 상세 설명
애플 은 iOS 8.0 이후 UIAlertView 와 UIActionSheet 을 버 리 고 UIAlertController 를 사용 해 이전 UIAlertView 와 UIActionSheet 을 통합 했다.새 버 전의 API 는 몇 줄 의 코드 가 간결 해 지면 이전의 큰 코드 의 기능 을 실현 할 수 있다.

 UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"My Alert"
                                  message:@"This is an alert."
                              preferredStyle:UIAlertControllerStyleAlert];

  UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
                             handler:^(UIAlertAction * action) {
                               NSLog(@"    ");
                             }];

  UIAlertAction* defaultAction2 = [UIAlertAction actionWithTitle:@"OK2" style:UIAlertActionStyleDefault
                             handler:^(UIAlertAction * action) {
                               NSLog(@"    ");
                             }];

  [alert addAction:defaultAction];
  [alert addAction:defaultAction2];
  [self presentViewController:alert animated:YES completion:nil];

AlertView 를 초기 화 하 는 것 은 큰 차이 가 없 으 며,주요 차이 점 은 이벤트 추가 입 니 다.애플 은 이벤트 추가 용 으로 UIAlertAction 을 새로 추가 했다.하나의 Action 은 하나의 이벤트 에 대응 하여 alert 에 추가 하면 사용 할 수 있 습 니 다.
Action Sheet 으로 전환 하려 면 preferred Style 을 UIAlertController Style Action Sheet 으로 수정 해 야 합 니 다.
입력 상자 코드 를 다음 과 같이 추가 할 수도 있 습 니 다.

  [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
    textField.placeholder = @"     ";
  }];



읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기