29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
*/
@interface OFURLHandler: OFObject
{
OFString *_scheme;
}
/*!
* The scheme this OFURLHandler handles.
*/
@property (readonly, nonatomic) OFString *scheme;
/*!
* @brief Registers the specified class as the handler for the specified scheme.
*
* If the same class is specified for two schemes, one instance of it is
|
|
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
*/
@interface OFURLHandler: OFObject
{
OFString *_scheme;
}
/*!
* @brief The scheme this OFURLHandler handles.
*/
@property (readonly, nonatomic) OFString *scheme;
/*!
* @brief Registers the specified class as the handler for the specified scheme.
*
* If the same class is specified for two schemes, one instance of it is
|