123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- ////////////////////////////////////////////////////////////////////////////
- //
- // 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
|