-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLRString.m
45 lines (33 loc) · 1.1 KB
/
LRString.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// LRString.m
// iOSDec
//
// Created by Declan Land
// Copyright Declan Land. All rights reserved.
//
#import "LRString.h"
@implementation LRString
+ (NSString *)LRStringWithLeft:(NSString *)left right:(NSString *)right maxlength:(int)maxlength maxleft:(int)maxleft maxright:(int)maxright {
int spaces = 0;
// check left string and add ... to the end
// if it exceeds the length:
if (left.length > maxleft) {
NSString *minus3 = [left substringToIndex:[left length] - 3];
left = [minus3 stringByAppendingString:@"..."];
}
// do some optional calculation with right string:
if (right.length > maxright) {
}
// calculate spaces:
spaces = maxlength - (int)left.length - (int)right.length;
// generate string:
NSString *output = [NSString stringWithFormat:@"%@", left];
// add spaces:
for (int i = 0; i < spaces; i++) {
output = [output stringByAppendingString:@" "];
}
// add right:
output = [output stringByAppendingString:right];
return output;
}
@end