I want to make my game support TV Out, and robterrell's TVOutManager looks like a very good and simple solution. ( http://github.com/robterrell/TVOutManager )
I followed the three easy steps from the instructions:
- Get the files TVOutManager.m and TVOutManager.h from github and add them to your project.
- In your app controller, add this to the other imports near the top: #import "TVOutManager.h"
- In your application's -applicationDidFinishLaunching: method, add this line: [[TVOutManager sharedInstance] startTVOut];
When I try to compile, I get nine symbols not found, all from TVOutManager.o
"_CGRectGetHeight" "_CGContextConcatCTM" "_CGAffineTransformScale" "_CGContextSaveGState" "_CGContextRestoreGState" "_CGContextTranslateCTM" "_CGAffineTransformRotate" "_CGRectGetWidth" "_CGAffineTransformIdentity"
What's going on?