stringWithFormat static method

NSMutableString stringWithFormat(
  1. NSString format
)
override

stringWithFormat:

Implementation

static NSMutableString stringWithFormat(NSString format) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSMutableString,
    _sel_stringWithFormat_,
    format.ref.pointer,
  );
  return NSMutableString.fromPointer($ret, retain: true, release: true);
}