Browse Source

bug fixed

pull/1/head
gme_2 6 years ago
parent
commit
7eca307e0e
  1. BIN
      GMERemittance/Assets.xcassets/.DS_Store
  2. 2
      GMERemittance/Module/Home/User Interface/View/HomeViewController.swift
  3. 2
      GMERemittance/Module/MessageCompose/User Interface/View/MessageCompose.storyboard
  4. 3
      GMERemittance/Profile/ProfileViewController.swift

BIN
GMERemittance/Assets.xcassets/.DS_Store

2
GMERemittance/Module/Home/User Interface/View/HomeViewController.swift

@ -172,7 +172,7 @@ class HomeViewController: UIViewController, UICollectionViewDelegateFlowLayout {
} }
private func setupNavigationNotifications() { private func setupNavigationNotifications() {
NotificationCenter.default.addObserver(self, selector: #selector(self.showAutoDebit), name: self.getKftcAccountListNotificationName(), object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(self.showAutoDebit), name: self.getKftcAccountListNotificationName(), object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(self.showWithdraw), name: self.getWithdrawNotificationName(), object: nil) NotificationCenter.default.addObserver(self, selector: #selector(self.showWithdraw), name: self.getWithdrawNotificationName(), object: nil)

2
GMERemittance/Module/MessageCompose/User Interface/View/MessageCompose.storyboard

@ -89,7 +89,7 @@
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="15"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="15"/>
<textInputTraits key="textInputTraits" autocapitalizationType="sentences"/> <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
</textView> </textView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="doW-xn-Ubq">
<button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="doW-xn-Ubq">
<rect key="frame" x="163.5" y="476" width="48" height="30"/> <rect key="frame" x="163.5" y="476" width="48" height="30"/>
<state key="normal" title="Cancel"> <state key="normal" title="Cancel">
<color key="titleColor" red="0.2901960784" green="0.2901960784" blue="0.2901960784" alpha="1" colorSpace="calibratedRGB"/> <color key="titleColor" red="0.2901960784" green="0.2901960784" blue="0.2901960784" alpha="1" colorSpace="calibratedRGB"/>

3
GMERemittance/Profile/ProfileViewController.swift

@ -7,6 +7,7 @@ class ProfileViewController: UIViewController {
let gmeWalletNotText = "gme_wallet_no_text".localized() let gmeWalletNotText = "gme_wallet_no_text".localized()
let yourAvailableBalanceText = "available_balance_text".localized() let yourAvailableBalanceText = "available_balance_text".localized()
let profileText = "profile_text".localized() let profileText = "profile_text".localized()
let withdrawButtonText = "withdraw_text".localized()
} }
@IBOutlet weak var labelUserProfileName: UILabel! @IBOutlet weak var labelUserProfileName: UILabel!
@ -52,7 +53,7 @@ class ProfileViewController: UIViewController {
func configureLanguage() { func configureLanguage() {
self.availableBalancetTitleLabel.text = StringConstants().yourAvailableBalanceText self.availableBalancetTitleLabel.text = StringConstants().yourAvailableBalanceText
self.gmeWalletNumber.text = StringConstants().gmeWalletNotText self.gmeWalletNumber.text = StringConstants().gmeWalletNotText
self.withdrawButton.setTitle(StringConstants().changePasswordText, for: UIControlState.normal)
self.withdrawButton.setTitle(StringConstants().withdrawButtonText, for: UIControlState.normal)
} }

Loading…
Cancel
Save