mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-23 16:29:33 +08:00
16 lines
368 B
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)
|
|
}
|