Advertisement
Guest User

Untitled

a guest
Aug 6th, 2013
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import <UIKit/UIKit.h>
  2.  
  3. @interface ViewController : UIViewController
  4.  
  5. {
  6.     UILabel *Label;
  7.     UITextField *Name;
  8.     UILabel *Stav;
  9.     UILabel *Stav2;
  10.     IBOutlet UIImageView *Free;
  11.     IBOutlet UIImageView *booked;
  12. }
  13.  
  14. @property (nonatomic, retain) IBOutlet UILabel *Label;
  15. @property (nonatomic, retain) IBOutlet UITextField *Name;
  16. @property (nonatomic, retain) IBOutlet UILabel *Stav;
  17. @property (retain, nonatomic) IBOutlet UILabel *Stav2;
  18.  
  19. -(IBAction)Button1:(id)sender;
  20. -(IBAction)dismissKeyboard;
  21.  
  22. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement