685
686
687
688
689
690
691
692
693
694
695
696
697
698
|
* @brief Creates a new string by appending the specified format.
*
* @param format A format string which generates the string to append
* @return A new, autoreleased OFString with the specified format appended
*/
- (OFString*)stringByAppendingFormat: (OFConstantString*)format, ...;
/*!
* @brief Creates a new string by appending a path component.
*
* @param component The path component to append
* @return A new, autoreleased OFString with the path component appended
*/
- (OFString*)stringByAppendingPathComponent: (OFString*)component;
|
>
>
>
>
>
>
>
>
>
>
|
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
|
* @brief Creates a new string by appending the specified format.
*
* @param format A format string which generates the string to append
* @return A new, autoreleased OFString with the specified format appended
*/
- (OFString*)stringByAppendingFormat: (OFConstantString*)format, ...;
/*!
* @brief Creates a new string by appending the specified format.
*
* @param format A format string which generates the string to append
* @param arguments The arguments used in the format string
* @return A new, autoreleased OFString with the specified format appended
*/
- (OFString*)stringByAppendingFormat: (OFConstantString*)format
arguments: (va_list)arguments;
/*!
* @brief Creates a new string by appending a path component.
*
* @param component The path component to append
* @return A new, autoreleased OFString with the path component appended
*/
- (OFString*)stringByAppendingPathComponent: (OFString*)component;
|