mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
390b3e0466
Category for NSString instead of using Utils Speed string in NSString additions
18 lines
423 B
Objective-C
18 lines
423 B
Objective-C
//
|
|
// StringAdditions.h
|
|
// Transmission
|
|
//
|
|
// Created by Mitchell Livingston on 1/16/06.
|
|
// Copyright 2006 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface NSString (StringAdditions)
|
|
|
|
+ (NSString *) stringForFileSize: (uint64_t) size;
|
|
+ (NSString *) stringForSpeed: (float) speed;
|
|
- (NSString *) stringFittingInWidth: (float) width
|
|
withAttributes: (NSDictionary *) attributes;
|
|
|
|
@end
|