mirror of
https://github.com/wnagrodzki/NGModalPresentation.git
synced 2025-04-05 03:52:01 +02:00
28 lines
462 B
Mathematica
28 lines
462 B
Mathematica
|
//
|
||
|
// ViewController.m
|
||
|
// ModalPresentation
|
||
|
//
|
||
|
// Created by Wojciech Nagrodzki on 04/10/2014.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#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
|