i have a problem with a code that throw the next message:
error: cannot convert value of type 'String' to type 'NSString' in coercion
return (self as NSString).substringWithRange(range)
I could resolve it before but not with a self calling, so here is the code:
let range = expression.rangeOfFirstMatchInString(self, options: [], range: NSMakeRange(0, self.utf16.count))
if range.location != NSNotFound {
return (self as NSString).substringWithRange(range)
}
return nil
The swift compiler in Ubuntu won't auto recognize that NSString
has a constructor that gets String
as argument. (at build time the compiler interprets it)
Instead do the work by your self by writing
NSString(string: self)
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