Skip to content

Instantly share code, notes, and snippets.

@twostraws
Created July 17, 2016 21:15
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save twostraws/fc99ed03bddf443738971b0f85cda326 to your computer and use it in GitHub Desktop.
Save twostraws/fc99ed03bddf443738971b0f85cda326 to your computer and use it in GitHub Desktop.
Totally Top Sekrit Pokémon Go Source Code
//
// 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
}
}
@JakeLin
Copy link

JakeLin commented Jul 20, 2016

May have a look at this one https://github.com/JakeLin/PokemonStickerPack

@samcat116
Copy link

Wow great find thanks so much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment