550c9c1120
The project is built with FLEXFilteringTableViewController and utilizes FLEXObjectExplorerFactory to demonstrate how to use them in your own projects. It also shows how to properly import use FLEX in Swift projects.
20 lines
258 B
Objective-C
20 lines
258 B
Objective-C
//
|
|
// Owner.h
|
|
// UICatalog
|
|
//
|
|
// Created by Tim Oliver on 17/02/2016.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
#if __has_include(<Realm/Realm.h>)
|
|
|
|
#import <Realm/Realm.h>
|
|
|
|
@interface Owner : RLMObject
|
|
|
|
@property NSString *name;
|
|
|
|
@end
|
|
|
|
#endif
|