When I present MFMessageComposeViewController on an iOS 11 device it's presented mysteriously missing the recipient field. The same code works on an iPhone 6 running iOS 10.
MFMessageComposeViewController presented without recipient field (iOS 11)
429 views Asked by Andrew Campoli At
1
There are 1 answers
Related Questions in IOS11
- Transparent Black Shade over the Navigation Bar in iPhone-X Later Notch Screen Devices in iOS App
- How to use notification service extension in Cordova FCM
- Why is my responsive, hybrid email template breaking in iPhone 7 Native mail (only)?
- How to make .endswith work in OS 11 chrome and safari?
- Named Color in user defined property border color UIButton app crash
- pod install / update on iOS11 with Xcode12.2
- UISearchController searchBar background color of text field in iOS 11
- UISearchController does not show up in iOS 12
- Swift/Combine- Assign a filtered object to a property on a class
- Is it possible to use ARReferenceImage objects created programatically from the images on iOS 11.3.1
- Can iOS DeviceCheck token remains same across 2 apps if both app has different developer but has same SDK installed?
- OpenTok Session Volume Change Doesn't work with MPVolumeView
- Bottom ion-tabs overlapping on last portion of ion-content on iOS devices
- Disable drag interaction on specific section
- dyld: Library not loaded: @rpath/ ... Reason: no suitable image found. updated device to latest update 13.3.1
Related Questions in MFMESSAGECOMPOSEVIEWCONTROLLER
- iOS: crash if sharing with "Message" option
- How to disable attachments button in MFMessageComposeViewController?
- iOS:mobile sim verification code from app
- app get crashed while navigating to RootViewController from Message popup
- MFMessageComposeViewController stops sms messaging
- ios MFMessageComposeViewController ipod crash
- Sending an SMS on iPhone
- Message Composer in Mac Catalyst not working
- How to enable buttons in MessageUI (Swift 4)
- Get message body and recipients list from MFMessageComposeViewController
- How to attach screenshot to mailcomposer in iOS
- UITextField cursor is gone after sending SMS with MFMessageComposeViewController
- How to change MFMessageComposeViewController's Contact picker's title color and text?
- When sending SMS more than once with iOS 4.3 MFMessageComposeViewController always has data of the first message
- How to send a message in iPhone devices?
Related Questions in MESSAGEUI
- How to change status bar to White in MFMailComposeViewController?
- sending sms programmatically in iphone
- iPhone send email not using MessageUI
- Implementing Mail within my iOS app
- How to use MFMailComposeViewController
- How to send message automatically to a mobile number at scheduled time in IOS 8
- MFMailComposeViewControllerDelegate: Cannot declare conformance to 'NSObjectProtocol' in Swift
- After hitting cancel in a MFMessageComposeViewController nothing happens
- iPhone : How do I update my project from iOS 3.0 to iOS 4.3 (or iOS 5.0) which includes MessageWebLayer?
- How to launch MFMessageComposeViewController
- Crash On MFMailComposeViewController For iPad
- How to enable buttons in MessageUI (Swift 4)
- What is this linker error telling me?
- Sent email from IOS Simulator but not receiving in mailbox
- MFMessageComposeViewController presented without recipient field (iOS 11)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

After a lot of messing around, I found that if I remove my project-wide hiding of the status bar in my info.plist: View controller-based status bar appearance: NO and instead manually prefer that the status bar is hidden in each of my own view controllers I got the correct behavior. This seems like a bug to me so I plan on filing a radar.
You need to set the below in each of your
UIViewControllersubclasses if you want to retain the status bar behavior: