I'd like to copy a float into the pasteboard, but the important thing is the value, as I want to paste it later in numbers, as a number.
Tried with :
[pasteboard setValue:SomeNSNumberWhereIStoredTheFloat forPasteboardType:@"NSNumber"];
With that, it got nothing to paste, and with pasteboard.string = numberInStringValue
, it pastes the number as a series of characters, in what I'm not interested.
Thanks for your help