mirror of
https://github.com/zhigang1992/Progress-backup.git
synced 2026-01-12 16:33:13 +08:00
30 lines
498 B
Objective-C
30 lines
498 B
Objective-C
//
|
|
// PPViewController.m
|
|
// Progress
|
|
//
|
|
// Created by Kyle Fang on 12/30/12.
|
|
// Copyright (c) 2012 kylefang. All rights reserved.
|
|
//
|
|
|
|
#import "PPViewController.h"
|
|
|
|
@interface PPViewController ()
|
|
|
|
@end
|
|
|
|
@implementation PPViewController
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
// Do any additional setup after loading the view, typically from a nib.
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning
|
|
{
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
@end
|