Settings: Bind phone numbers to the user's profile.

This commit is contained in:
giomfo
2017-02-20 18:34:41 +01:00
parent 8ca68e2dbc
commit bfeb93ad7b
7 changed files with 683 additions and 106 deletions
@@ -0,0 +1,35 @@
/*
Copyright 2017 Vector Creations Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#import <MatrixKit/MatrixKit.h>
/**
'TableViewCellWithPhoneNumberTextField' inherits 'MXKTableViewCellWithLabelAndTextField' class.
It may be used to fill a phone number.
*/
@interface TableViewCellWithPhoneNumberTextField : MXKTableViewCellWithLabelAndTextField
{
}
@property (strong, nonatomic) IBOutlet UIButton *countryCodeButton;
@property (strong, nonatomic) IBOutlet UILabel *isoCountryCodeLabel;
/**
The current selected country code
*/
@property (nonatomic) NSString *isoCountryCode;
@end