linphone-iphone/Classes/SideMenuTableView.h
Gautier Pelloux-Prayer 2c05f973c0 major mv
2015-09-09 16:44:00 +02:00

25 lines
453 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 SideMenuTableView : UITableViewController
@property(nonatomic, retain) NSMutableArray *sideMenuEntries;
@end