When using a UIAlertController, if I want to present a UIActionSheet with an empty title and an empty message, the frame for the expected placement
UIAlertController
UIActionSheet
Update Swift 4:
let alert = UIAlertController(title: nil, message: nil, preferredStyle: UIAlertControllerStyle.actionSheet)
Just need to pass nil to title and message params.
nil
title
message