The NSMutableString class declares the programmatic interface to an object that manages a mutable string — that is, a string whose contents can be edited — that conceptually represents an array of Unicode characters.
I'm trying to add several attributes to a NSMutableAttributedString; i tried this: let stringNumero: NSString = "\(squadra.cori.count)" //= two-digit number …
swift label uifont nsmutablestringHow do I add multiple strings to a string ? Whats the easiest way to do that ? If I don't want …
xcode uitableview nsstring mfmailcomposeviewcontroller nsmutablestringIs there a way to use replaceOccurrencesOfString (from NSMutableString) to replace whole words? For example, if I want to replace …
ios objective-c nsmutablestringBeen looking at this for a bit now and not understanding why this simple bit of code is throwing an …
objective-c nsmutablestringI've got a rather large loop that gets a string, does something to it, than goes onto the next one. …
iphone nsmutablestringIs there any way to initialize NSString to NSMutableString? and also reverse order? -(void)st:(NSString *)st { NSMutableString str = …
objective-c iphone casting nsmutablestringIt works fine to cast a Swift String as an NSString. let string = "some text" let nsString = string as NSString …
ios string swift nsmutablestringI want to append a string to a NSMutableString using appendFormat, inserting white spaces to get a minimum length for …
ios xcode swift nsmutablestring