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)
427 Views Asked by Andrew Campoli At
1
There are 1 best solutions below
Related Questions in IOS11
- tableViewCell not scrolling up while editing a textfield in iOS11
- iOS 11 breaks row selection
- UITextField drawTextInRect is never called
- How to find obstacles in horizontal surface using ARKIT of iOS 11(Scenekit)?
- UIKeyboardWillShowNotification issues with ios 11 beta 7
- How to hide tabs in tabBarController dynamically in swift 3
- iOS11 file provider extension not working
- iOS11 Beta 8 | MapKit cluster performance issues 900+ Annotations
- iOS 11 navigationbar scroll
- iOS 11 CoreNFC How To Check if device has NFC Capability?
- How to place a 3D object above the other one using ARKit?
- with the new iOS 11 coming out- does WebRTC support mean that Twilio will work for voice in a browser instead of an app?
- Tab bar on iOS 11 not appearing
- scrollIntoView causes WKWebView to be partially unresponsive
- dyld: Library not loaded: @rpath/libswiftMetal.dylib on iOS 11(15A5304j) with Xcode 9 beta 6
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)
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)
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?

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: