ipad
UIActionSheet on iPad is not showing cancel button
iPads have some special rules about action sheets and their cancel buttons, depending on where you are displaying it from: You can present an action sheet from a toolbar, tab bar, button bar item, or from a view. This class takes the starting view and current platform into account when determining how to present the … Read more
MFMailComposeViewController – iPad
Loos like MFMailComposeViewController was not created for some reason and thus has nil value. Check if it is nil before presenting it (although this workaround does not answer what went wrong here…). You should also perform the check if mail composer can send mail before trying to create and present it using +canSendMail method (it … Read more
jQuery .on() and .delegate() doesn’t work on iPad
It’s a Safari mobile bug/feature : click events won’t bubble all the way up to body. Adding onclick=”” is a known workaround, but IMHO it’s easier to attach your listener on a first child of <body>. See: http://www.quirksmode.org/blog/archives/2010/09/click_event_del.html
Present ActionSheet in SwiftUI on iPad
Sadly, this bug has not been fixed for the final release of iOS 13. It was mentioned on the developer forums, and I’ve filed a feedback for it (FB7397761), but for the time being one needs to work around it by using some other UI when UIDevice.current.userInterfaceIdiom == .pad. For the record, the (unhelpful) exception … Read more