linphone-iphone/Classes/SideMenuTableView.h
2018-10-24 16:00:09 +02:00

26 lines
471 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
UIImage *img;
NSString *title;
SideMenuEntryBlock onTapBlock;
};
@end
@interface SideMenuTableView : UITableViewController
@property(nonatomic, retain) NSMutableArray *sideMenuEntries;
@end