linphone-ios/Classes/SideMenuTableViewController.h
Gautier Pelloux-Prayer 7088aae44c side menu
2015-07-29 14:10:56 +02:00

25 lines
463 B
Objective-C

//
// SideMenuTableViewController.h
// linphone
//
// Created by Gautier Pelloux-Prayer on 28/07/15.
//
//
#import <UIKit/UIKit.h>
// the block to execute when an entry tapped
typedef void (^SideMenuEntryBlock)(void);
@interface SideMenuEntry : NSObject {
@public
NSString *title;
SideMenuEntryBlock onTapBlock;
};
@end
@interface SideMenuTableViewController : UITableViewController
@property(nonatomic, retain) NSMutableArray *sideMenuEntries;
@end