MenuViewController.h 454 B

12345678910111213141516
  1. //
  2. // MenuViewController.h
  3. // Granite Expo eSign
  4. //
  5. // Created by Ray on 02/03/2017.
  6. // Copyright © 2017 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MenuViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>
  10. @property (strong, nonatomic) UITableView* tableView;
  11. //@property (assign, nonatomic) CGRect frame;
  12. @property (strong, nonatomic) NSMutableArray* arr_menuItems;
  13. @end