Apple notes say that the NSPasteboardItem class was introduced in 10.6, but surely Mac applications could handle clipboard data before 10.6?
I've become a Mac dev after 10.6 was released, so I don't know how to write correct fallback code, and I can't seem to find older docs.
The only thing I'm doing with the pasteboard in this app is to insert a character into a textfield. I look up autocompletion values on each keypress and have been recommended this solution here (to make the cursor behave as expected when the user presses a key).
Alternative answers accepted: Can you suggest a different way of putting a character in the clipboard and [textField paste], so to speak? Or a different way of inserting a char at the cursor's position in the text field and ensure the cursor is where you expect it to be?
Since I guess the fallback switch is done run-time, I would also need to know how to skip a declaration of NSPasteboardItem if run on 10.5 - or it will continue to crash with symbol not found: _OBJC_CLASS_$_NSPasteBoardItem on 10.5.
