From 220e170dc1d69d69bedd5c54839b6165a996d46c Mon Sep 17 00:00:00 2001 From: ccr Date: Mon, 17 Dec 2018 13:28:05 +0545 Subject: [PATCH] withdraw visibility fixed --- GMERemittance/Profile/Profile.storyboard | 1 + GMERemittance/Profile/ProfileViewController.swift | 2 ++ 2 files changed, 3 insertions(+) diff --git a/GMERemittance/Profile/Profile.storyboard b/GMERemittance/Profile/Profile.storyboard index 3e67fcf7..4a552fe7 100644 --- a/GMERemittance/Profile/Profile.storyboard +++ b/GMERemittance/Profile/Profile.storyboard @@ -291,6 +291,7 @@ + diff --git a/GMERemittance/Profile/ProfileViewController.swift b/GMERemittance/Profile/ProfileViewController.swift index f71e5027..812d3d99 100644 --- a/GMERemittance/Profile/ProfileViewController.swift +++ b/GMERemittance/Profile/ProfileViewController.swift @@ -11,6 +11,7 @@ class ProfileViewController: UIViewController { @IBOutlet weak var labelMobileNumber: UILabel! @IBOutlet weak var labelBalance: UILabel! + @IBOutlet weak var withdrawButton: UIButton! var profileImage: UIImage! public static var profileConnectionTimeOutCheck = 0 @@ -20,6 +21,7 @@ class ProfileViewController: UIViewController { // self.setupPicturedNavBar() self.setupNormalNavigation() self.navigationItem.title = "Profile" + self.withdrawButton.isHidden = !Utility.pennyTestVerified() show() }