mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-03-29 09:09:02 +08:00
Use relative paths in #imports to prevent XCode 4.2 from complaining
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
#import <Three20/Three20.h>
|
||||
#import "DBResourceListTableViewController.h"
|
||||
#import "DBTopic.h"
|
||||
#import "../Models/DBTopic.h"
|
||||
|
||||
/**
|
||||
* Displays a table of Posts within a given Topic
|
||||
|
||||
@@ -8,8 +8,8 @@
|
||||
|
||||
#import <RestKit/Three20/Three20.h>
|
||||
#import "DBPostsTableViewController.h"
|
||||
#import "DBPost.h"
|
||||
#import "DBUser.h"
|
||||
#import "../Models/DBPost.h"
|
||||
#import "../Models/DBUser.h"
|
||||
|
||||
@implementation DBPostsTableViewController
|
||||
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
//
|
||||
|
||||
#import "DBResourceListTableViewController.h"
|
||||
#import "DBManagedObjectCache.h"
|
||||
#import "DBUser.h"
|
||||
#import "DBContentObject.h"
|
||||
#import "../Other/DBManagedObjectCache.h"
|
||||
#import "../Models/DBUser.h"
|
||||
#import "../Models/DBContentObject.h"
|
||||
|
||||
@implementation UINavigationBar (CustomImage)
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#import <Three20/Three20.h>
|
||||
#import "DBAuthenticatedTableViewController.h"
|
||||
#import "DBTopic.h"
|
||||
#import "../Models/DBTopic.h"
|
||||
|
||||
@interface DBTopicViewController : DBAuthenticatedTableViewController <RKObjectLoaderDelegate> {
|
||||
UITextField* _topicNameField;
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
//
|
||||
|
||||
#import "DBTopicViewController.h"
|
||||
#import "DBTopic.h"
|
||||
#import "DBUser.h"
|
||||
#import "../Models/DBTopic.h"
|
||||
#import "../Models/DBUser.h"
|
||||
|
||||
@implementation DBTopicViewController
|
||||
|
||||
|
||||
@@ -8,8 +8,8 @@
|
||||
|
||||
#import <Three20/Three20+Additions.h>
|
||||
#import "DBTopicsTableViewController.h"
|
||||
#import "DBTopic.h"
|
||||
#import "DBUser.h"
|
||||
#import "../Models/DBTopic.h"
|
||||
#import "../Models/DBUser.h"
|
||||
|
||||
@implementation DBTopicsTableViewController
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
//
|
||||
|
||||
#import "DBManagedObjectCache.h"
|
||||
#import "DBTopic.h"
|
||||
#import "DBPost.h"
|
||||
#import "../Models/DBTopic.h"
|
||||
#import "../Models/DBPost.h"
|
||||
|
||||
@implementation DBManagedObjectCache
|
||||
|
||||
|
||||
@@ -18,15 +18,15 @@
|
||||
#import <Three20/Three20+Additions.h>
|
||||
|
||||
// Discussion Board
|
||||
#import "DBTopicsTableViewController.h"
|
||||
#import "DBTopic.h"
|
||||
#import "DBPostsTableViewController.h"
|
||||
#import "DBPost.h"
|
||||
#import "DBManagedObjectCache.h"
|
||||
#import "DBTopicViewController.h"
|
||||
#import "DBLoginOrSignUpViewController.h"
|
||||
#import "DBUser.h"
|
||||
#import "DBPostTableViewController.h"
|
||||
#import "../Controllers/DBTopicViewController.h"
|
||||
#import "../Controllers/DBTopicsTableViewController.h"
|
||||
#import "../Controllers/DBPostsTableViewController.h"
|
||||
#import "../Controllers/DBPostTableViewController.h"
|
||||
#import "../Controllers/DBLoginOrSignUpViewController.h"
|
||||
#import "../Models/DBTopic.h"
|
||||
#import "../Models/DBPost.h"
|
||||
#import "../Models/DBUser.h"
|
||||
|
||||
/**
|
||||
* The HTTP Header Field we transmit the authentication token obtained
|
||||
|
||||
Reference in New Issue
Block a user