-
Notifications
You must be signed in to change notification settings - Fork 10
/
IBDictionaryViewController.m
71 lines (54 loc) · 2.54 KB
/
IBDictionaryViewController.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
#import "IBDictionaryViewController.h"
@implementation IBDictionaryViewController
- (id)initWithDictionary:(NSDictionary*)dictionary {
UITableViewStyle style = UITableViewStylePlain;
if (@available(iOS 13, *)) {
style = UITableViewStyleInsetGrouped;
}
if (self = [super initWithStyle:style]) {
self.dictionary = dictionary;
}
return self;
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.dictionary.allKeys.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell"];
}
cell.textLabel.text = [self.dictionary.allKeys objectAtIndex:indexPath.row];
NSString *formatted = [NSString stringWithFormat:@"%@", [self.dictionary valueForKey:[self.dictionary.allKeys objectAtIndex:indexPath.row]]];
NSString *detail = [[formatted componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]] componentsJoinedByString:@" "];
cell.detailTextLabel.text = detail;
return cell;
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSObject *object = [self.dictionary valueForKey:[self.dictionary.allKeys objectAtIndex:indexPath.row]];
if ([object isKindOfClass:[NSDictionary class]]) {
IBDictionaryViewController *viewController = [[IBDictionaryViewController alloc] initWithDictionary:(NSDictionary*)object];
[self.navigationController pushViewController:viewController animated:true];
}
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
- (BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
- (BOOL)tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
{
return (action == @selector(copy:));
}
- (void)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
{
if (action == @selector(copy:)){
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[[UIPasteboard generalPasteboard] setString:cell.detailTextLabel.text];
}
}
@end