Files
GitHawk/Classes/View Controllers/CreateProfileViewController.swift

16 lines
368 B
Swift

//
// CreateProfileViewController.swift
// Freetime
//
// Created by Ryan Nystrom on 6/29/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import UIKit
import SafariServices
func CreateProfileViewController(login: String) -> UIViewController {
let url = URL(string: "https://github.com/\(login)")!
return SFSafariViewController(url: url)
}