Issue when using MFMailComposeViewController

后端 未结 3 1003
南方客
南方客 2020-12-28 14:15

I have a tricky problem. In one of my app, with over 150.000 downloads... I have a problem which seldom occurs and which I can\'t seem to figure out.

The problem is

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-28 15:13

    a had the same issue, and this fixe helped me:

    https://twitter.com/christian_beer/statuses/321295533077565440

    "@nathangaskin well… that was long ago :) But if I remember correctly, it worked after I removed the custom fonts from my UIAppearance code"

    It works fine for me.

    Also, second option is to simply wrap displaying call into

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
    

    block

提交回复
热议问题