mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-23 11:58:29 +00:00
28 lines
499 B
Objective-C
28 lines
499 B
Objective-C
//
|
|
// ViewController.m
|
|
// AssistantPlusApp
|
|
//
|
|
// Created by Zaid Elkurdi on 3/27/15.
|
|
// Copyright (c) 2015 Zaid Elkurdi. All rights reserved.
|
|
//
|
|
|
|
#import "ViewController.h"
|
|
|
|
@interface ViewController ()
|
|
|
|
@end
|
|
|
|
@implementation ViewController
|
|
|
|
- (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
|