mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 22:42:45 +08:00
25 lines
612 B
Objective-C
25 lines
612 B
Objective-C
//
|
|
// DBPostTableViewController.h
|
|
// DiscussionBoard
|
|
//
|
|
// Created by Jeremy Ellison on 1/10/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "DBAuthenticatedTableViewController.h"
|
|
#import "DBPost.h"
|
|
#import "DBTopic.h"
|
|
|
|
@interface DBPostTableViewController : DBAuthenticatedTableViewController <RKObjectLoaderDelegate, TTTextEditorDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate> {
|
|
DBPost* _post;
|
|
DBTopic* _topic;
|
|
|
|
TTTextEditor* _bodyTextEditor;
|
|
TTImageView* _currentAttachmentImageView;
|
|
|
|
UIImage* _newAttachment;
|
|
}
|
|
|
|
@end
|