00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <UIKit/UIKit.h>
00010 @class JDMenuPopover;
00011
00012 @protocol JDMenuPopoverDelegate
00013
00014 - (void)menuPopover:(JDMenuPopover *)menuPopover didSelectMenuItemAtIndex:(NSInteger)selectedIndex;
00015
00016 @end
00017
00018 @interface JDMenuPopover : UIView<UITableViewDataSource,UITableViewDelegate>
00019
00020 @property(nonatomic,assign) id<JDMenuPopoverDelegate> menuPopoverDelegate;
00021
00022 - (id)initWithFrame:(CGRect)frame menuItems:(NSArray *)menuItems;
00023 - (void)showInView:(UIView *)view;
00024 - (void)dismissMenuPopover;
00025 - (void)layoutUIForInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation;
00026 @end
00027