Changeset 2958
- Timestamp:
- 06/17/05 22:26:31 (4 years ago)
- Files:
-
- ZankaAdditions/trunk/ZAURL.h (modified) (1 diff)
- ZankaAdditions/trunk/ZAURL.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ZankaAdditions/trunk/ZAURL.h
r1629 r2958 46 46 - (NSString *)string; 47 47 - (NSString *)humanReadableString; 48 - (ZAURL *)URLByDeletingLastPathComponent; 48 49 - (NSURL *)URL; 49 50 - (BOOL)isFileURL; ZankaAdditions/trunk/ZAURL.m
r2922 r2958 320 320 321 321 322 - (ZAURL *)URLByDeletingLastPathComponent { 323 ZAURL *url; 324 325 url = [self copy]; 326 [url setPath:[[url path] stringByDeletingLastPathComponent]]; 327 328 329 return [url autorelease]; 330 } 331 332 333 322 334 - (NSURL *)URL { 323 335 return [NSURL URLWithString:[self string]];
