Skip to content

Instantly share code, notes, and snippets.

@unnamedd
Created January 27, 2012 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unnamedd/1689500 to your computer and use it in GitHub Desktop.
Save unnamedd/1689500 to your computer and use it in GitHub Desktop.
View de Login
//
// 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