You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.0 KiB

6 years ago
  1. //
  2. // AboutGMEViewController.swift
  3. // GMERemittance
  4. //
  5. // Created by Sujal on 2/13/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. class AboutGMEViewController: UIViewController {
  10. let URLFacebook: String = "https://www.facebook.com/gmeremit/?ref=br_rs"
  11. let URLLinkedIn: String = "https://www.linkedin.com/company/gmeremit/"
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. setUpNavBar(id: 202, title: "")
  15. }
  16. override func didReceiveMemoryWarning() {
  17. super.didReceiveMemoryWarning()
  18. // Dispose of any resources that can be recreated.
  19. }
  20. @IBAction func checkForUpdate(_ sender: Any) {
  21. }
  22. @IBAction func openLinkedIn(_ sender: Any) {
  23. if let url = URL(string: URLLinkedIn) {
  24. UIApplication.shared.openURL(url)
  25. }
  26. }
  27. @IBAction func openFacebook(_ sender: Any) {
  28. if let url = URL(string: URLFacebook) {
  29. UIApplication.shared.openURL(url)
  30. }
  31. }
  32. }