--- a/cocoaTouch/iPad/DetailViewController.h Mon Mar 29 20:49:36 2010 +0000
+++ b/cocoaTouch/iPad/DetailViewController.h Mon Mar 29 23:20:34 2010 +0000
@@ -9,10 +9,13 @@
#import <UIKit/UIKit.h>
-@interface DetailViewController : UIViewController <UIPopoverControllerDelegate, UISplitViewControllerDelegate> {
+@interface DetailViewController : UIViewController <UITableViewDelegate, UITableViewDataSource,
+ UINavigationBarDelegate, UIPopoverControllerDelegate, UISplitViewControllerDelegate> {
UIPopoverController *popoverController;
UINavigationBar *navigationBar;
-
+ NSArray *optionList;
+ UITableView * table;
+
id detailItem;
UILabel *test;
}
@@ -21,6 +24,8 @@
@property (nonatomic, retain) IBOutlet UINavigationBar *navigationBar;
@property (nonatomic, retain) IBOutlet UILabel *test;
@property (nonatomic, retain) id detailItem;
+@property (nonatomic, retain) NSArray *optionList;
+@property (nonatomic, retain) IBOutlet UITableView *table;
-(IBAction) dismissSplitView;