What is the formatter %@ in Objective-c -
what %@ means when it's using nslog? , when use that?
nsdate* d = [nsdate datewithtimeintervalsincenow:1201921383]; nslog(@"result: %@",d);
objective-c object, printed string returned descriptionwithlocale
: if available, or description
otherwise. works cftyperef
objects, returning result of cfcopydescription
function.
Comments
Post a Comment