Hi, I'm trying to to paste something to the generalPasteboard but I keep getting some warnings because I'm using 10.6 coding in my 10.5 app. Can someone please fix this code to make it compile for 10.5 or earlier versions of OS X. Thanks
NSString *areacode = @"774";
NSPasteboard *pasteboard = [NSPasteboard generalPasteboard];
[pasteboard clearContents];
NSArray *copiedObjects = [NSArray arrayWithObject:[NSString stringWithFormat:@"%@%@", areacode, phone]];
[pasteboard writeObjects:copiedObjects];
Right now I'm getting this warning message "NSPasteboard may not respond to -clearContents and writeObjects"