2016-11-16 4 views
0

분배 : 나는 경고를 표시하려면이를 사용 https://stackoverflow.com/a/37275840/6196609스위프트 경고 재구성 한 쇼와 나는 그 질문의 대부분의 투표 대답의 지침에 따르는의 ViewController에서 사용자 정의 경고 생성

, 그것은 "는로 사용됩니다 로드 ".

self.presentViewController(self.pending, animated: true, completion: nil) 

내가 그것을 보여주는 데 성공하지만 이루어졌다로서 나는, 그 자체로 내 프로세스의 종료 후 그것을 호출의 ViewController하여 종료해야합니다

let pending = UIAlertController() 

override func viewDidLoad() { 
    super.viewDidLoad() 

    […] 

    let storyboard = UIStoryboard(name: "Main", bundle: nil) 
    let pending = storyboard.instantiateViewControllerWithIdentifier("alertaLoad") 
    pending.modalPresentationStyle = UIModalPresentationStyle.OverCurrentContext 
    pending.modalTransitionStyle = UIModalTransitionStyle.CrossDissolve 

    […] 

} 

이 보여 나는 인용했다. 나는 이것을 시도했지만 아무 일도 일어나지 않는다.

self.pending.dismissViewControllerAnimated(false, completion: { (vetor) -> Void in 
        […] 
       }) 

어떻게하면 제대로 할 수 있습니까? 하지 제시된 하나의 제시 UIViewController

답변

2

전화 dismiss :

self.dismiss(animated: true) { 
    // go on 
}