An amazing project that generates micro reports from tournament results
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
5.5 KiB

////////////////////////////////////////////////////////////////////////////
//
// Copyright 2014 Realm Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////
#import "TableViewController.h"
#import <Realm/Realm.h>
// Realm model object
@interface DemoObject : RLMObject
@property NSString *title;
@property NSDate *date;
@property NSString *sectionTitle;
@end
@implementation DemoObject
// None needed
@end
static NSString * const kCellID = @"cell";
static NSString * const kTableName = @"table";
@interface TableViewController ()
@property (nonatomic, strong) NSArray *sectionTitles;
@property (nonatomic, strong) NSMutableArray *objectsBySection;
@property (nonatomic, strong) RLMNotificationToken *notification;
@end
@implementation TableViewController
#pragma mark - View Lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
// Section Titles
self.sectionTitles = @[@"A", @"B", @"C"];
[self setupUI];
// Set realm notification block
__weak typeof(self) weakSelf = self;
self.notification = [RLMRealm.defaultRealm addNotificationBlock:^(NSString *note, RLMRealm *realm) {
[weakSelf.tableView reloadData];
}];
self.objectsBySection = [NSMutableArray arrayWithCapacity:3];
for (NSString *section in self.sectionTitles) {
RLMResults *unsortedObjects = [DemoObject objectsWhere:@"sectionTitle == %@", section];
RLMResults *sortedObjects = [unsortedObjects sortedResultsUsingKeyPath:@"date" ascending:YES];
[self.objectsBySection addObject:sortedObjects];
}
[self.tableView reloadData];
}
#pragma mark - UI
- (void)setupUI
{
self.title = @"GroupedTableView";
self.navigationItem.leftBarButtonItem =
[[UIBarButtonItem alloc] initWithTitle:@"BG Add"
style:UIBarButtonItemStylePlain
target:self
action:@selector(backgroundAdd)];
self.navigationItem.rightBarButtonItem =
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
target:self
action:@selector(add)];
}
#pragma mark - UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return self.sectionTitles.count;
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return self.sectionTitles[section];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self objectsInSection:section].count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellID];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:kCellID];
}
DemoObject *object = [self objectsInSection:indexPath.section][indexPath.row];
cell.textLabel.text = object.title;
cell.detailTextLabel.text = object.date.description;
return cell;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
RLMRealm *realm = RLMRealm.defaultRealm;
[realm beginWriteTransaction];
[realm deleteObject:[self objectsInSection:indexPath.section][indexPath.row]];
[realm commitWriteTransaction];
}
}
#pragma mark - Actions
- (void)backgroundAdd
{
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
// Import many items in a background thread
dispatch_async(queue, ^{
// Get new realm and table since we are in a new thread
@autoreleasepool {
RLMRealm *realm = [RLMRealm defaultRealm];
[realm beginWriteTransaction];
for (NSInteger index = 0; index < 5; index++) {
// Add row via dictionary. Order is ignored.
[DemoObject createInRealm:realm withValue:@{@"title": [self randomTitle],
@"date": [NSDate date],
@"sectionTitle": [self randomSectionTitle]}];
}
[realm commitWriteTransaction];
}
});
}
- (void)add
{
[[RLMRealm defaultRealm] transactionWithBlock:^{
[DemoObject createInDefaultRealmWithValue:@[[self randomTitle], [NSDate date], [self randomSectionTitle]]];
}];
}
#pragma - Helpers
- (RLMResults *)objectsInSection:(NSUInteger)section
{
return self.objectsBySection[section];
}
- (NSString *)randomTitle
{
return [NSString stringWithFormat:@"Title %d", arc4random()];
}
- (NSString *)randomSectionTitle
{
return self.sectionTitles[arc4random() % self.sectionTitles.count];
}
@end