19 lines
359 B
Objective-C
19 lines
359 B
Objective-C
//
|
|
// NYTAppDelegate.m
|
|
// Notifications for YouTube
|
|
//
|
|
// Created by Kim Wittenburg on 09.07.13.
|
|
// Copyright (c) 2013 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "NYTAppDelegate.h"
|
|
|
|
@implementation NYTAppDelegate
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
|
{
|
|
// Insert code here to initialize your application
|
|
}
|
|
|
|
@end
|