I used the messageui library in swift to create a mail composer, embedded into a button that opens the default mail app once clicked. However I keep getting this error once the mail app is opened.
Error:[PPT] Error creating the CFMessagePort needed to communicate with PPT.
If anyone has this issue, I seem to have found it. I had implemented
viewDidAppear:(BOOL)animatedin the MessagesViewController.m, but i did not call[super viewDidAppear:animated]. Adding the call tosuperfixed the missing touch events.The problem seems unrelated to the CFMessagePort error, because those are still showing in the Xcode console.