20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
extern "C" {
#endif
extern int _OFString_URLEncoding_reference;
#ifdef __cplusplus
}
#endif
/*!
* @brief A category which provides URL encoding and decoding.
*/
@interface OFString (URLEncoding)
/*!
* @brief Encodes a string for use in a URL.
*
* @return A new autoreleased string
*/
- (OFString*)stringByURLEncoding;
|
<
<
<
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
extern "C" {
#endif
extern int _OFString_URLEncoding_reference;
#ifdef __cplusplus
}
#endif
@interface OFString (URLEncoding)
/*!
* @brief Encodes a string for use in a URL.
*
* @return A new autoreleased string
*/
- (OFString*)stringByURLEncoding;
|