O pop-up não aponta para o botão

Eu tenho um aplicativo compatível com os layouts do iPhone e do iPad. Para o layout do iPhone, criei Action Sheet e Pop over para iPad. O problema é que a seta do pop-up não aponta para o botão em que cliquei. Abaixo está o meu código ....

let actionSheet = UIAlertController(title: "Choose an option",
            message: "Message",
            preferredStyle: .ActionSheet)
...

if UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.Pad
{
     // for iPad
     actionSheet.popoverPresentationController?.sourceView = self.view
     actionSheet.popoverPresentationController?.sourceRect = self.view.bounds;
     actionSheet.popoverPresentationController?.permittedArrowDirections = UIPopoverArrowDirection.allZeros;
}

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

questionAnswers(3)

yourAnswerToTheQuestion