session-ios/Signal/src/view controllers/RegistrationViewController.h
Christine Corbett ccdc4b5d17 Redesign implementation.
Result of stashed commits by @corbett and @abolishme
2015-01-24 16:28:34 -10:00

32 lines
923 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<UITextFieldDelegate>
// Country code
@property (nonatomic, strong) IBOutlet UIButton* countryNameButton;
@property (nonatomic, strong) IBOutlet UIButton* countryCodeButton;
//Phone number
@property(nonatomic, strong) IBOutlet UITextField* phoneNumberTextField;
//Button
@property(nonatomic, strong) IBOutlet UIButton* sendCodeButton;
@property(nonatomic, strong) IBOutlet UIButton* cancelReregButton;
@property (nonatomic, strong) IBOutlet UIActivityIndicatorView* spinnerView;
- (IBAction)unwindToCountryCodeWasSelected:(UIStoryboardSegue *)segue;
- (IBAction)unwindToCountryCodeSelectionCancelled:(UIStoryboardSegue *)segue;
@end