- (void)pasteString{
NSPasteboard *paste = [NSPasteboard generalPasteboard];
[paste clearContents];
[paste writeObjects:@[@"123"]];
}
参考:
https://www.2cto.com/kf/201710/687470.html
- (void)pasteString{
NSPasteboard *paste = [NSPasteboard generalPasteboard];
[paste clearContents];
[paste writeObjects:@[@"123"]];
}
参考:
https://www.2cto.com/kf/201710/687470.html