Well I have posted this message 3 times, I'm thinking that the moderators need to approve because I attached the jpg.
So here we go again.
Here is the requested screen shot.
and here is the code from the OptionsViewController.h
Code:
#import <UIKit/UIKit.h>
#define kDefaultLabelTag 50002
@class TextFieldEditingViewController;
@class AppointmentTypesViewController;
@class HistoryTypesViewController;
@class ContactName;
// Constants representing the Buttons
//
enum {
MActivityTypes,
MHistoryTypes,
ContactFields,
Defaults,
MyAppAccount,
FAQs,
AboutMyApp
};
// Constants representing the various sections of our grouped table view.
//
enum {
Section1,
Section2,
Section3
};
typedef NSUInteger ContactAttribute;
@interface OptionsRootController : UITableViewController <UITextFieldDelegate>
{
AppointmentTypesViewController *_appointmentTypesVC;
HistoryTypesViewController *_historyTypesVC;
UINavigationController *_navController;
NSManagedObjectContext *managedObjectContext;
}
@property (nonatomic, retain) UINavigationController *navController;
@property (nonatomic, retain) AppointmentTypesViewController *appointmentTypesVC;
@property (nonatomic, retain) HistoryTypesViewController *historyTypesVC;
@property (nonatomic, retain) NSManagedObjectContext *managedObjectContext;
- (UINavigationController *)navController;
@end