Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
127 views
in Technique[技术] by (71.8m points)

ios - How to convert Swift array to Data to send by FlutterStandardTypedData?

I create a Flutter plugin and I have some problems.

I used Pigeon to generate API between iOS and Flutter. I have some type that I Have to convert for example:

  1. [Int32] -> FlutterStandardTypedData
  2. [Float] -> FlutterStandardTypedData
  3. [UInt8] -> FlutterStandardTypedData

For example 1 -> FlutterStandardTypedData(bytes: Data(myUint8array))

But I have some problem with Int32 and float array? Any help?

question from:https://stackoverflow.com/questions/66058896/how-to-convert-swift-array-to-data-to-send-by-flutterstandardtypeddata

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I hope this link will help you to find the correct data type.

Dart: Int32List => Swift: FlutterStandardTypedData(int32: Data)

Dart: Float64List => Swift: FlutterStandardTypedData(float64: Data)

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...