Learning OS X frameworks for saving movies programmatically.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 

22 lines
332 B

//
// main.m
// VideoGeneration
//
// Created by Joshua Moerman on 28/01/14.
// Copyright (c) 2014 Joshua Moerman. All rights reserved.
//
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
}
return 0;
}