Unable to dismiss MFMailComposeViewController, delegate not called

前端 未结 4 1062
没有蜡笔的小新
没有蜡笔的小新 2021-01-30 12:45

I am calling MFMailComposeViewController from a UITableViewController. Problem is the delegate method is never called when I select Cancel or

4条回答
  •  执笔经年
    2021-01-30 13:34

    Make sure you use

    controller.mailComposeDelegate = self;
    

    and not

    controller.delegate = self;
    

提交回复
热议问题