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

//
// AboutGMEViewController.swift
// GMERemittance
//
// Created by Sujal on 2/13/18.
// Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
//
import UIKit
class AboutGMEViewController: UIViewController {
let URLFacebook: String = "https://www.facebook.com/gmeremit/?ref=br_rs"
let URLLinkedIn: String = "https://www.linkedin.com/company/gmeremit/"
override func viewDidLoad() {
super.viewDidLoad()
setUpNavBar(id: 202, title: "")
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func checkForUpdate(_ sender: Any) {
}
@IBAction func openLinkedIn(_ sender: Any) {
if let url = URL(string: URLLinkedIn) {
UIApplication.shared.openURL(url)
}
}
@IBAction func openFacebook(_ sender: Any) {
if let url = URL(string: URLFacebook) {
UIApplication.shared.openURL(url)
}
}
}