This repository has been archived by the owner on Aug 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathSSPersonViewController.m
457 lines (360 loc) · 13.1 KB
/
SSPersonViewController.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
//
// SSPersonViewController.m
// SSToolkit
//
// Created by Sam Soffes on 9/8/10.
// Copyright 2010 Sam Soffes. All rights reserved.
//
#import "SSPersonViewController.h"
#import "SSPersonHeaderView.h"
#import "SSPersonFooterView.h"
#import "SSPersonAddressTableViewCell.h"
#import "SSEditPersonViewController.h"
#import <AddressBookUI/AddressBookUI.h>
NSInteger kSSPersonViewControllerDeleteActionSheetTag = 987;
@interface SSPersonViewController (PrivateMethods)
+ (NSString *)_formatLabel:(NSString *)rawLabel;
@end
@implementation SSPersonViewController
@synthesize addressBook = _addressBook;
@synthesize displayedPerson = _displayedPerson;
#pragma mark Class Methods
+ (NSString *)_formatLabel:(NSString *)rawLabel {
NSString *label = nil;
// Strip weird wrapper
if ([rawLabel length] > 9 && [[rawLabel substringWithRange:NSMakeRange(0, 4)] isEqual:@"_$!<"]) {
label = [rawLabel substringWithRange:NSMakeRange(4, [rawLabel length] - 8)];
} else {
label = [[rawLabel copy] autorelease];
}
// Lowercase unless iPhone
if ([label isEqual:(NSString *)kABPersonPhoneIPhoneLabel] == NO) {
label = [label lowercaseString];
}
return label;
}
#pragma mark NSObject
- (id)init {
if ((self = [super initWithStyle:UITableViewStyleGrouped])) {
_headerView = [[SSPersonHeaderView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 84.0)];
_numberOfSections = 1;
_rowCounts = [[NSMutableArray alloc] init];
_cellData = [[NSMutableDictionary alloc] init];
}
return self;
}
- (void)dealloc {
if (_addressBook) {
CFRelease(_addressBook);
_addressBook = nil;
}
if (_displayedPerson) {
CFRelease(_displayedPerson);
_displayedPerson = nil;
}
[_headerView release];
[_footerView release];
[_rowCounts release];
[_cellData release];
[super dealloc];
}
#pragma mark Initializers
- (id)initWithPerson:(ABRecordRef)aPerson {
self = [self initWithPerson:aPerson addressBook:nil];
return self;
}
- (id)initWithPerson:(ABRecordRef)aPerson addressBook:(ABAddressBookRef)anAddressBook {
if ((self = [self init])) {
if (aPerson) {
self.displayedPerson = aPerson;
if (anAddressBook) {
self.addressBook = anAddressBook;
}
}
}
return self;
}
#pragma mark UIViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"Info";
self.tableView.tableHeaderView = _headerView;
_footerView = [[SSPersonFooterView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.frame.size.width, 74.0)];
self.tableView.tableFooterView = _footerView;
[_footerView.editButton addTarget:self action:@selector(editPerson:) forControlEvents:UIControlEventTouchUpInside];
[_footerView.deleteButton addTarget:self action:@selector(deletePerson:) forControlEvents:UIControlEventTouchUpInside];
}
#pragma mark Actions
- (void)editPerson:(id)sender {
SSEditPersonViewController *viewController = [[SSEditPersonViewController alloc] init];
viewController.displayedPerson = self.displayedPerson;
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
[viewController release];
[self.navigationController presentModalViewController:navigationController animated:YES];
[navigationController release];
}
- (void)deletePerson:(id)sender {
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete Contact" otherButtonTitles:nil];
actionSheet.tag = kSSPersonViewControllerDeleteActionSheetTag;
[actionSheet showInView:self.view];
[actionSheet release];
}
#pragma mark Getters
- (ABAddressBookRef)addressBook {
if (_addressBook) {
return _addressBook;
}
// Create one if none exists
_addressBook = ABAddressBookCreate();
return _addressBook;
}
#pragma mark Setters
- (void)setAddressBook:(ABAddressBookRef)book {
if (_addressBook) {
CFRelease(_addressBook);
_addressBook = nil;
}
if (!book) {
return;
}
_addressBook = CFRetain(book);
}
- (void)setDisplayedPerson:(ABRecordRef)person {
if (_displayedPerson) {
CFRelease(_displayedPerson);
_displayedPerson = nil;
}
if (!person) {
return;
}
_displayedPerson = CFRetain(person);
// Image
if (ABPersonHasImageData(_displayedPerson)) {
NSData *imageData = (NSData *)ABPersonCopyImageData(_displayedPerson);
UIImage *image = [UIImage imageWithData:imageData];
_headerView.image = image;
[imageData release];
} else {
_headerView.image = nil;
}
// Name
ABPropertyID nameProperties[] = {
kABPersonPrefixProperty,
kABPersonFirstNameProperty,
kABPersonMiddleNameProperty,
kABPersonLastNameProperty,
kABPersonSuffixProperty
};
NSMutableArray *namePieces = [[NSMutableArray alloc] init];
NSInteger namePiecesTotal = sizeof(nameProperties) / sizeof(ABPropertyID);
for (NSInteger i = 0; i < namePiecesTotal; i++) {
NSString *piece = (NSString *)ABRecordCopyValue(_displayedPerson, nameProperties[i]);
if (piece) {
[namePieces addObject:piece];
[piece release];
}
}
_headerView.personName = [namePieces componentsJoinedByString:@" "];
[namePieces release];
// Organization
NSString *organizationName = (NSString *)ABRecordCopyValue(_displayedPerson, kABPersonOrganizationProperty);
_headerView.organizationName = organizationName;
[organizationName release];
// Multivalues
_numberOfSections = 0;
[_rowCounts removeAllObjects];
ABPropertyID multiProperties[] = {
kABPersonPhoneProperty,
kABPersonEmailProperty,
kABPersonURLProperty,
kABPersonAddressProperty
};
NSInteger multiPropertiesTotal = sizeof(multiProperties) / sizeof(ABPropertyID);
for (NSInteger i = 0; i < multiPropertiesTotal; i++) {
// Get values count
ABPropertyID property = multiProperties[i];
ABMultiValueRef valuesRef = ABRecordCopyValue(_displayedPerson, property);
NSInteger valuesCount = 0;
if (valuesRef != nil) valuesCount = ABMultiValueGetCount(valuesRef);
if (valuesCount > 0) {
_numberOfSections++;
[_rowCounts addObject:[NSNumber numberWithInteger:valuesCount]];
} else {
//CFRelease(valuesRef);
continue;
}
// Loop through values
for (NSInteger k = 0; k < valuesCount; k++) {
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:k inSection:_numberOfSections - 1];
// Get label
NSString *rawLabel = (NSString *)ABMultiValueCopyLabelAtIndex(valuesRef, k);
NSString *label = [[self class] _formatLabel:rawLabel];
[rawLabel release];
// Get value
NSString *value = (NSString *)ABMultiValueCopyValueAtIndex(valuesRef, k);
// Merge address dictionary
if (i == 3 && [value isKindOfClass:[NSDictionary class]]) {
NSDictionary *addressDictionary = (NSDictionary *)value;
NSMutableString *addressString = [[NSMutableString alloc] init];
NSString *street = [addressDictionary objectForKey:(NSString *)kABPersonAddressStreetKey];
NSString *city = [addressDictionary objectForKey:(NSString *)kABPersonAddressCityKey];
NSString *state = [addressDictionary objectForKey:(NSString *)kABPersonAddressStateKey];
NSString *zip = [addressDictionary objectForKey:(NSString *)kABPersonAddressZIPKey];
NSString *country = [addressDictionary objectForKey:(NSString *)kABPersonAddressCountryKey];
// Street
if (street) {
[addressString appendString:street];
}
// City
if (city) {
if ([addressString length] > 0) {
[addressString appendString:@"\n"];
}
[addressString appendString:city];
}
// State
if (state) {
if ([addressString length] > 0) {
[addressString appendString:(city ? @" " : @"\n")];
}
[addressString appendString:state];
}
// Zip
if (zip) {
if ([addressString length] > 0) {
[addressString appendString:(state || city ? @" " : @"\n")];
}
[addressString appendString:zip];
}
// Country
if (country) {
if ([addressString length] > 0) {
[addressString appendString:@"\n"];
}
[addressString appendString:country];
}
[value release];
value = addressString;
}
// Get url
NSString *urlString = nil;
switch (i) {
// Phone number
case 0: {
NSString *cleanedValue = [value stringByReplacingOccurrencesOfString:@" " withString:@""];
cleanedValue = [cleanedValue stringByReplacingOccurrencesOfString:@"-" withString:@""];
cleanedValue = [cleanedValue stringByReplacingOccurrencesOfString:@"(" withString:@""];
cleanedValue = [cleanedValue stringByReplacingOccurrencesOfString:@")" withString:@""];
urlString = [NSString stringWithFormat:@"tel://%@", value];
break;
}
// Email
case 1: {
urlString = [NSString stringWithFormat:@"mailto:%@", value];
break;
}
// URL
case 2: {
urlString = value;
break;
}
// Address
case 3: {
// This functionality is in SSToolkit's NSString category, but I wanted to remove and external
// dependencies, so it's implemention is copied here.
NSString *urlEncodedString = (NSString *)CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault, (CFStringRef)value,
NULL, CFSTR("!*'();:@&=+$,/?%#[]"),
kCFStringEncodingUTF8);
urlString = [NSString stringWithFormat:@"http://maps.google.com/maps?q=%@", urlEncodedString];
[urlEncodedString release];
break;
}
}
// Add dictionary to cell data
NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:
label, @"label",
value, @"value",
[NSURL URLWithString:urlString], @"url",
[NSNumber numberWithInteger:property], @"property",
nil];
[value release];
[_cellData setObject:dictionary forKey:indexPath];
[dictionary release];
}
CFRelease(valuesRef);
}
// Note
NSString *note = (NSString *)ABRecordCopyValue(_displayedPerson, kABPersonNoteProperty);
if (note) {
_numberOfSections++;
[_rowCounts addObject:[NSNumber numberWithInteger:1]];
NSDictionary *noteDictionary = [[NSDictionary alloc] initWithObjectsAndKeys:
@"notes", @"label",
note, @"value",
[NSNumber numberWithInteger:kABPersonNoteProperty], @"property",
nil];
[_cellData setObject:noteDictionary forKey:[NSIndexPath indexPathForRow:0 inSection:_numberOfSections - 1]];
[noteDictionary release];
}
[note release];
// Reload table
if (_numberOfSections < 1) {
_numberOfSections = 1;
}
[self.tableView reloadData];
}
#pragma mark UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return _numberOfSections;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if ([_rowCounts count] == 0) {
return 0;
}
return [[_rowCounts objectAtIndex:section] integerValue];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *valueCellIdentifier = @"valueCellIdentifier";
static NSString *addressValueCellIdentifier = @"addressValueCellIdentifier";
NSDictionary *cellDictionary = [_cellData objectForKey:indexPath];
UITableViewCell *cell = nil;
if ([[cellDictionary objectForKey:@"property"] integerValue] == kABPersonAddressProperty) {
cell = [tableView dequeueReusableCellWithIdentifier:addressValueCellIdentifier];
if (!cell) {
cell = [[[SSPersonAddressTableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:addressValueCellIdentifier] autorelease];
}
} else {
cell = [tableView dequeueReusableCellWithIdentifier:valueCellIdentifier];
if (!cell) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:valueCellIdentifier] autorelease];
}
}
cell.textLabel.text = [cellDictionary objectForKey:@"label"];
cell.detailTextLabel.text = [cellDictionary objectForKey:@"value"];
cell.selectionStyle = [[UIApplication sharedApplication] canOpenURL:[cellDictionary objectForKey:@"url"]] ? UITableViewCellSelectionStyleBlue : UITableViewCellSelectionStyleNone;
return cell;
}
#pragma mark UITableViewDelegate
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
NSDictionary *cellDictionary = [_cellData objectForKey:indexPath];
if ([[cellDictionary objectForKey:@"property"] integerValue] == kABPersonAddressProperty) {
return [SSPersonAddressTableViewCell heightForDetailText:[cellDictionary objectForKey:@"value"] tableWidth:self.tableView.frame.size.width];
}
return 44.0;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView deselectRowAtIndexPath:indexPath animated:YES];
NSDictionary *cellDictionary = [_cellData objectForKey:indexPath];
[[UIApplication sharedApplication] openURL:[cellDictionary objectForKey:@"url"]];
}
#pragma mark UIActionSheetDelegate
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex {
if (actionSheet.tag != kSSPersonViewControllerDeleteActionSheetTag) {
return;
}
// Delete person
ABAddressBookRemoveRecord(self.addressBook, self.displayedPerson, nil);
ABAddressBookSave(self.addressBook, nil);
[self.navigationController popViewControllerAnimated:YES];
}
@end