session-ios/Signal/src/view controllers/RegistrationViewController.h

24 lines
658 B
Objective-C

//
// RegistrationViewController.h
// Signal
//
// Created by Dylan Bourgeois on 13/11/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CountryCodeViewController.h"
@interface RegistrationViewController : UIViewController<CountryCodeViewControllerDelegate, UITextFieldDelegate>
// Country code
@property (nonatomic, strong) IBOutlet UIButton * countryCodeButton;
@property (nonatomic, strong) IBOutlet UILabel * countryNameLabel;
@property (nonatomic, strong) IBOutlet UILabel * countryCodeLabel;
//Phone number
@property(nonatomic, strong) IBOutlet UITextField* phoneNumberTextField;
@end