Guest User

Untitled

a guest
Jun 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #import <UIKit/UIKit.h>
  2. #import "mainScreen.h"
  3. #import "Client.h"
  4.  
  5. @interface Screen : UIViewController {
  6. NSNumber *index;
  7. NSMutableArray *views;
  8.  
  9. mainScreen *main;
  10. Client *client;
  11. }
  12.  
  13. @property (nonatomic,retain) NSNumber *index;
  14.  
  15. - (id)initWithViewAtIndex:(int)i;
  16. - (void)loadViewAtIndex:(int)i;
  17. - (void)showLoadedView;
  18.  
  19. @end
Add Comment
Please, Sign In to add comment