Converter Extras
This package will contain the standard encodings/decodings/hahsing used by the String Conversion Tool app. It will also, however, contain extra encoding/decoding methods (new encoding/decoding)
Usage
To use this package, simply:
import Foundation
class Test {
let myString = "Test string of text"
let encoder = Encoder(source: myString)
encoder.quickString2Binary()
}
or
import Foundation
class Test {
let myString = "Test string of text"
let encoder = Encoder()
encoder.setSource(source: myString)
encoder.quickString2Binary()
}
- That is it for the usage of this package