Created
January 27, 2012 16:05
-
-
Save unnamedd/1689500 to your computer and use it in GitHub Desktop.
View de Login
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// LoginViewController.h | |
// Videolog | |
// | |
// Created by Thiago Holanda on 1/20/12. | |
// Copyright (c) 2012 | |
// | |
#import <UIKit/UIKit.h> | |
@interface LoginViewController : UIViewController { | |
UILabel *loginCaptionLabel; | |
UITextField *loginTextField; | |
UILabel *senhaCaptionLabel; | |
UITextField *senhaTextField; | |
} | |
@property (nonatomic, retain) UILabel *loginCaptionLabel; | |
@property (nonatomic, retain) UITextField *loginTextField; | |
@property (nonatomic, retain) UILabel *senhaCaptionLabel; | |
@property (nonatomic, retain) UITextField *senhaTextField; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment