Top "Nsstring" questions

NSString is the plain-text character-string class in Cocoa and Cocoa Touch.

Markdown to NSAttributedString library?

Now that NSAttributedString is fully supported in iOS 6, is there a library that will take an NSString with markdown, and …

iphone ios nsstring markdown nsattributedstring
NSString font size specific to frame width

I am using drawRect for a text display, calling NSString. I am trying to implement using sizeWithFont to auto resizing …

objective-c nsstring drawrect sizewithfont
How to filter a string after a particular character in iOS?

I want to filter string after character '='. For eg if 8+9=17 My output should be 17. I can filter character …

ios nsstring nsscanner
Convert "1.0E-4" from NSString to double

I want to get the double value from "1.04E-4" NSString, but I didn't manage yet how to do it. I …

objective-c nsstring double nsscanner