blob: 9ebf18700cb0568b1f17fd51185971e40cd6e389 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// LoginViewController.h
// Juick
//
// Created by Vitaly on 30.01.14.
// Copyright (c) 2014 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "JVFloatLabeledTextField.h"
#import "PDKeychainbindingsController.h"
@interface LoginViewController : UITableViewController<UITextFieldDelegate>
@property(nonatomic, strong) JVFloatLabeledTextField *usernameField;
@property(nonatomic, strong) JVFloatLabeledTextField *passwordField;
@end
|