Created
July 17, 2016 21:15
-
-
Save twostraws/fc99ed03bddf443738971b0f85cda326 to your computer and use it in GitHub Desktop.
Totally Top Sekrit Pokémon Go Source Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// PokemonGoViewController.swift | |
// Totally Top Sekrit Pokémon Go Source Code | |
// | |
// Created by Niantic on 07/01/2016. | |
// Copyright © 2016 Niantic rights reserved. | |
// | |
import UIKit | |
class PokemonGoViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
let label = UILabel() | |
label.translatesAutoresizingMaskIntoConstraints = false | |
view.addSubview(label) | |
label.centerXAnchor.constraintEqualToAnchor(view.centerXAnchor).active = true | |
label.centerYAnchor.constraintEqualToAnchor(view.centerYAnchor).active = true | |
label.text = "LOADING…" | |
UIApplication.sharedApplication().networkActivityIndicatorVisible = true | |
} | |
} |
May have a look at this one https://github.com/JakeLin/PokemonStickerPack
Wow great find thanks so much
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Forking from Venezuela. Lol.