Topic and post creating, editing, and deleting

This commit is contained in:
Jeremy Ellison
2011-01-11 12:32:18 -05:00
parent b01805384d
commit 378aaac12b
36 changed files with 1169 additions and 124 deletions

View File

@@ -0,0 +1,23 @@
//
// DBPostTableViewController.h
// DiscussionBoard
//
// Created by Jeremy Ellison on 1/10/11.
// Copyright 2011 __MyCompanyName__. 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