How to create NSString
of zero width space.
In Objective-C, I used to create like this:
NSString *emptyText = @"\u200B";
How to create it in Swift? I have tried following, but it is not working.
let emptyString = "\u200B"
Use this syntax in Swift
let emptyString = "\u{200B}"
Of course you can also use unicode characters directly in your Swift code.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With