1

嗨,我知道你们中的许多人已经知道如何做到这一点,但请帮助我,因为我是快速编程的初学者。

请考虑此代码并帮助我进行更改,

//我的阅读代码

let ReceiveData = rxCharacteristic?.value
        if let ReceiveData = ReceiveData {
            let ReceivedNoOfBytes = ReceiveData.count
            myByteArray = [UInt8](repeating: 0, count: ReceivedNoOfBytes)
            (ReceiveData as NSData).getBytes(&myByteArray, length: ReceivedNoOfBytes)
            print("Data Received ",myByteArray)
               }

//现在我将它们存储到一些局部变量中,如下所示

let b0 = myByteArray[0]
let b0 = myByteArray[1]
let b2 = myByteArray[2]
let b3 = myByteArray[3]

//现在我想插入一些来自文本框的数据

var tb1 = textbox1.text
var b1 = tb1.flatMap{UInt8(String($0))}

var tb2 = textbox2.text
var b2 = tb2.flatMap{UInt8(String($0))}

//现在我正在使用如下功能块写入所有数据

let Transmitdata = NSData(bytes: bytes, length: bytes.count)
                peripheral.writeValue(Transmitdata as Data, for: txCharacteristic!, type: CBCharacteristicWriteType.withoutResponse)
                print("Data Sent",Transmitdata)

在这里,我目前正在类声明下创建一个新的字节数组并分配接收到的字节数组。像下面

class Example:UIViwecontroller{

var storebytes: [UInt8]()


func somefunc(){

storebytes = myByteArray

}

然后尝试在 myByteArray 中的前两个位置交换我的文本框数据,然后将其传递给传输数据。

有什么简单的方法吗?就像只是在我需要的地方插入字节然后将其传递给传输?

我试过使用一些方法,比如

bytes.insert(new data,at: index)

但它给了我一个超出范围的索引。有人知道更好的方法吗?

4

1 回答 1

3

在 Swift 3+Data中可以用作包含UInt8对象的集合类型。

从一个Data对象String

let hello = Data("hello".utf8)

您可以将其[UInt8]简单地转换为

let hello1 = [UInt8](hello)

并返回Data

let hello2 = Data(hello1)

Data提供所有操作 API,如append, insert,remove


其实你不需要[UInt8]。给定两个字符串作为Data对象

var hello = Data("Hello !".utf8)
let world = Data("world".utf8)

你可以world插入hello

hello.insert(contentsOf: world, at: 6)
print(String(data: hello, encoding: .utf8)!) // "Hello world!"

然后得到一系列数据

let rangeOfWorld = Data(hello[6...11])
print(String(data: rangeOfWorld, encoding: .utf8)!) // "world!"
于 2017-12-19T09:37:03.357 回答