SystemClipboard::copyTextToClipboard and paste into Apple Numbers

Hello it looks like it’s problem with Apple Numbers, but I wonder if anybody have any solution for that.

I create juce::String and copy it to clipboard as follows:

String listOfNumbers(getFloatNumberForId(0), 2);
for(int i=1; i<numOfNumbers; ++i)
{
    listOfNumbers += "\t";
    listOfNumbers += String(getFloatNumberForId(i), 2);
}

SystemClipboard::copyTextToClipboard(  listOfNumbers  );

And then I paste it to Apple Numbers, but all numbers go to one cell.
I found workaround as follows:
Firstly I paste text to Apple TextEdit app, then select all text in TextEdit, then copy it to clipboard with “Command-C” and then I paste it to Numbers. And it works.

But it’s very annoying so I wonder if is there any solution to such issue? Maybe my juce::String should have different separator then "\t". But to be honest I tried to use semicolon, spacebar and comma. But always the same result.