Audited all code in the app and produced extensive TODO list. Fixed build problems when on the Release profile.

This commit is contained in:
Blake Watters
2011-01-17 22:03:31 -05:00
parent c9c0a82475
commit a538bbca2f
22 changed files with 309 additions and 111 deletions

View File

@@ -6,15 +6,21 @@
// Copyright 2011 Two Toasters. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <Three20/Three20.h>
#import "DBResourceListTableViewController.h"
#import "DBTopic.h"
/**
* Displays a table of Posts within a given Topic
*/
@interface DBPostsTableViewController : DBResourceListTableViewController {
// TODO: Just use a Topic
NSString* _topicID;
}
/**
* The Topic we are viewing Posts within
*/
@property (nonatomic, readonly) DBTopic* topic;
@end