30 lines
509 B
Objective-C
30 lines
509 B
Objective-C
//
|
|
// FirstViewController.m
|
|
// rudict-ios
|
|
//
|
|
// Created by Admin on 14.12.14.
|
|
// Copyright (c) 2014 Vladislav. All rights reserved.
|
|
//
|
|
|
|
#import "FirstViewController.h"
|
|
|
|
@interface FirstViewController ()
|
|
|
|
@end
|
|
|
|
@implementation FirstViewController
|
|
|
|
- (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
|