Well I am confused because should be a no brainer.
In Xcode 5 I start a new iphone project. In ViewDidLoad I begin typing:
NSImage *image ...
Actually at the point of "NSI" ... the NSImage is not available. I see many other options like NSInteger etc...
So from the start I cant create a NSImage object.
Ok so I look at documentation for NSImage and it clearly says object is declared in both following packages (why are there 2 declarations and which one should I use)
Declared in NSGraphics.h
NSImage.h
but I am not allowed to import any of these packages.I just get red line next to it when I try to do that.
So if I am not allowed to import this package ... why does the documentation give me information about the package that it is in. I am sure I should be able to use it ??
So what daft thing am I doing ?