Skip to content

Instantly share code, notes, and snippets.

@jpsim
Created August 19, 2014 22:57
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpsim/dd75f1cfcf1d6f0a7973 to your computer and use it in GitHub Desktop.
Save jpsim/dd75f1cfcf1d6f0a7973 to your computer and use it in GitHub Desktop.
Grouped UITableView using Realm
////////////////////////////////////////////////////////////////////////////
//
// 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) 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.tableView reloadData];
}
#pragma mark - UI
- (void)setupUI
{
self.title = @"TableViewExample";
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
RLMRealm *realm = [RLMRealm defaultRealm];
[realm beginWriteTransaction];
for (NSInteger index = 0; index < 5; index++) {
// Add row via dictionary. Order is ignored.
[DemoObject createInRealm:realm withObject:@{@"title": [self randomString],
@"date": [self randomDate],
@"sectionTitle": [self randomSectionTitle]}];
}
[realm commitWriteTransaction];
});
}
- (void)add
{
RLMRealm *realm = [RLMRealm defaultRealm];
[realm beginWriteTransaction];
[DemoObject createInRealm:realm withObject:@[[self randomString], [self randomDate], [self randomSectionTitle]]];
[realm commitWriteTransaction];
}
#pragma - Helpers
- (RLMArray *)objectsInSection:(NSUInteger)section
{
RLMArray *unsortedObjects = [DemoObject objectsWhere:@"sectionTitle == %@", self.sectionTitles[section]];
return [unsortedObjects arraySortedByProperty:@"date" ascending:YES];
}
- (NSString *)randomString
{
return [NSString stringWithFormat:@"Title %d", arc4random()];
}
- (NSDate *)randomDate
{
return [NSDate dateWithTimeIntervalSince1970:arc4random()];
}
- (NSString *)randomSectionTitle
{
return self.sectionTitles[arc4random() % self.sectionTitles.count];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment