Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

NSString is the plain-text character-string class in Cocoa and Cocoa Touch. See also NSMutableString, NSData and NSMutableData (for objects that contain bytes rather than human-language characters), and NSAttributedString and NSMutableAttributedString (for rich-text strings).

learn more… | top users | synonyms

0
votes
1answer
264 views

Data argument not used by format string?

I'm trying to let the user post a status on facebook and I get the error: "Data argument not used by format string" on this code: [mySLComposerSheet setInitialText:[NSString ...
0
votes
1answer
38 views

Trying to Format a String that is Not a String

I have an application in Xcode 4.5. My application allows the user to make a post on their Facebook wall. Each post returns a unique post identification number that is of variable type 'id'. For the ...
0
votes
2answers
680 views

Objective-C: Facebook username from link returned by Graph API call

Fetching http://graph.facebook.com/514417 from the Facebook Graph API gives me the NSString @"http://www.facebook.com/mattdipasquale". How do I extract just mattdipasquale every time? Can I assume the ...