public override void Draw(CGRect rect)
            {
                using (CGContext context = UIGraphics.GetCurrentContext())
                {
                    UIColor.Black.SetColor();

                    var boldFont    = UIFont.BoldSystemFontOfSize((nfloat)14.0f);
                    var regularFont = UIFont.SystemFontOfSize((nfloat)14.0f);

                    UIStringDrawing.DrawString(Title, new CGRect(4, 2, 320, 20), boldFont);
                    UIStringDrawing.DrawString(Subtitle, new CGRect(54, 22, 450, 20), regularFont);
                }
            }