0
UIAlertController
gösteriyorum ve UIAlertAction
görüntü denetleyicisini reddediyorum. IOS 9.3'ten önce çalışıyordu. Ancak iOS 9.3'te çalışmıyor. Aşağıdaki kod.Yapılandırılamıyor Denetimci Denetlenen iOS 9.3
let alertController = UIAlertController(title: "Logged In Successfully", message: "asda", preferredStyle: .Alert)
// Create the actions
let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) { UIAlertAction in
self.dismissViewControllerAnimated(true, completion: nil)
}
// Add the actions
alertController.addAction(okAction)
// Present the controller
self.presentViewController(alertController, animated: true, completion: nil)
Eklediğim mola noktaları. Alertcontroller çalışıyor ama ReleaseViewer çalışmıyor. –
UIAlertAction parametresini _? Ile değiştirmeyi denediniz mi? – Roee84