Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00032 #import <UIKit/UIKit.h>
00033
00037 @interface PolicyViewController : UIViewController <UITableViewDataSource>{
00038
00039 IBOutlet UITableView *policyListTableView;
00040 IBOutlet UIButton *insertButton;
00041 IBOutlet UIButton *deleteButton;
00042 NSInteger selectedIndex;
00043 }
00044
00045 @property (nonatomic, retain) UITableView* policyListTableView;
00046
00051 - (IBAction)insertAction:(id)sender;
00052
00057 - (IBAction)deleteAction:(id)sender;
00058
00059
00060 @end