mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
25 lines
453 B
Objective-C
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
|