JGuizard
9/22/2015 - 1:53 PM

Basi ViewController

Basi ViewController

class ViewController: UIViewController
{
    
    var CLASS_TAG="ViewController";
    
    override func viewDidLoad()
    {
        super.viewDidLoad()
        NSLog(CLASS_TAG+": viewDidLoad()")
    }
    
    
    override func didReceiveMemoryWarning()
    {
        super.didReceiveMemoryWarning()
        NSLog(CLASS_TAG+": didReceiveMemoryWarning()")
    }
}