Jul. 26th, 2009 04:00 am
Objectionable-C
- (IBAction) loadFile : (id) sender {
NSImage *im;
[model loadData:"/Users/joshua/projects/dvbt/dvbt.mixed.raw"];
[nsamples setIntValue:[model getSampleCount]];
im = [[NSImage alloc] initWithSize: NSMakeSize(64, 64)];
[im lockFocus];
[[NSColor redColor] set];
NSRectFill(NSMakeRect(16, 16, 16, 16));
[im unlockFocus];
[iview setImage: im];
}Seriously, what the fuck is this shit?