iOS – UIPasteboard
Try the following:
UIPasteboard *pb = [UIPasteboard generalPasteboard];
[pb setValue:@"" forPasteboardType:UIPasteboardNameGeneral];
Arab_Geek's response is correct but available for Cocoa (and I suspect you are looking for an iOS solution)