I have graphic that I would like to create as a UIAlertController? Can I create a xib and then call that file to present it? What is the best way to do this?
An alert is nothing but a presented view controller. So make your own view controller and call present
. It's as simple as that.