Files
Tanner Bennett 550c9c1120 Add new Swift Example project
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.
2020-03-24 14:53:32 -05:00

25 lines
378 B
Objective-C

//
// Dog.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>
#import "Owner.h"
@interface Dog : RLMObject
@property NSString *name;
@property CGFloat height;
@property NSDate *birthdate;
@property BOOL vaccinated;
@property Owner *owner;
@end
#endif