Example #1
0
        partial void ShowNotiViewTouchUpInside(UIButton sender)
        {
            int randomNumber = random.Next(0, 1000) % messages.Length;

            HDNotificationView.ShowNotification(
                image: UIImage.FromBundle("sampleIcon"),
                title: "HDNotification Demo",
                message: messages[randomNumber],
                isAutoHide: true,
                onTouch: () => {
                HDNotificationView.HideNotification();
            }
                );
        }