Files
RestKit/Examples/RKDiscussionBoardExample/DiscussionBoard/Code/Controllers/DBPostTableViewController.h
2011-01-17 19:21:57 -05:00

24 lines
595 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"
@interface DBPostTableViewController : DBAuthenticatedTableViewController <RKObjectLoaderDelegate, TTTextEditorDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate> {
DBPost* _post;
NSNumber* _topicID;
TTTextEditor* _bodyTextEditor;
TTImageView* _currentAttachmentImageView;
UIImage* _newAttachment;
}
@end