mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-01 09:31:17 +08:00
22 lines
516 B
Objective-C
22 lines
516 B
Objective-C
//
|
|
// RKURL.h
|
|
// RestKit
|
|
//
|
|
// Created by Jeff Arena on 10/18/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
|
|
@interface RKURL : NSURL {
|
|
NSString* _baseURLString;
|
|
NSString* _resourcePath;
|
|
}
|
|
|
|
@property (nonatomic, readonly) NSString* baseURLString;
|
|
@property (nonatomic, readonly) NSString* resourcePath;
|
|
|
|
- (id)initWithBaseURLString:(NSString*)baseURLString resourcePath:(NSString*)resourcePath;
|
|
+ (RKURL*)URLWithBaseURLString:(NSString*)baseURLString resourcePath:(NSString*)resourcePath;
|
|
|
|
@end
|