Does anyone know what is the equivalent of this java code in swift 2.3
ByteBuffer tmpCounter = ByteBuffer.wrap(byteCounter);
System.out.println(tmpCounter.getLong());
Does anyone know what is the equivalent of this java code in swift 2.3
ByteBuffer tmpCounter = ByteBuffer.wrap(byteCounter);
System.out.println(tmpCounter.getLong());
Well, I already solved it. The equivalent of byteByffer.wrap() would be the following in swift.