mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-07 09:37:31 +08:00
* Reorganized tests to accommodate split into Logic & Application. * Eliminated 'Spec' naming in favor of 'Test' as the suite is entirely based on SenTest. * Pulled majority of testing support classes up into the library and documented them. * Introduced RKApplicationTests app for running the RKTableController UI tests
19 lines
397 B
Objective-C
19 lines
397 B
Objective-C
//
|
|
// RKSearchable.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 7/26/11.
|
|
// Copyright (c) 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
#import "RKSearchableManagedObject.h"
|
|
|
|
@interface RKSearchable : RKSearchableManagedObject
|
|
|
|
@property (nonatomic, retain) NSString * title;
|
|
@property (nonatomic, retain) NSString * body;
|
|
|
|
@end
|