UIAlertをいろいろなところから呼び出し可能にしたいと思っています。
例えば

MyAlert.show()

といった感じに。

下記のようなクラスを作って表示させるのは作法としておかしいでしょうか?
特にrootViewControllerを呼び出している辺りについてどうするのが適切でしょうか?

import UIKit

class MyAlert {

    class func show(){

        let alertTitle = "アラート"
        let alertMsg = "サンプルアラートです。"

        let alertController: UIAlertController = UIAlertController(title: alertTitle, message: alertMsg, preferredStyle: .Alert)

        let cancelAction: UIAlertAction = UIAlertAction(title: "キャンセル", style: .Cancel) { action -> Void in
            //nothing
        }
        alertController.addAction(cancelAction)

        let submitAction: UIAlertAction = UIAlertAction(title: "OK", style: .Default) { action -> Void in
            //something to do
        }
        alertController.addAction(submitAction)
        var rootvc = UIApplication.sharedApplication().keyWindow?.rootViewController
        rootvc!.presentViewController(alertController, animated: true, completion: nil)
    }
}