// 알임 뷰를 표시하는 static 메서드
    public static AlertViewController Show(
        string title, string message, AlertViewOptions options = null)
    {
        if (prefab == null)
        {
            // 프리팹을 읽어 들인다.
            prefab = Resources.Load("AlertView") as GameObject;
        }

        GameObject          go        = Instantiate(prefab) as GameObject;
        AlertViewController alertView = go.GetComponent <AlertViewController>();

        alertView.UpadateContent(title, message, options);

        return(alertView);
    }