Guest User

Untitled

a guest
Jul 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #import <UIKit/UIKit.h>
  2.  
  3.  
  4. @interface MyClassViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
  5.  
  6. UITableView* _tableView;
  7.  
  8. }
  9. - (id)initWithFrame:(CGRect)frame;
  10.  
  11. @property(nonatomic, retain)UITableView* tableView;
  12.  
  13. @end
  14.  
  15. @implementation PopUpPlaylistViewController
  16. @synthesize tableView = _tableView;
  17.  
  18. @interface MyClassViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource>
Add Comment
Please, Sign In to add comment