Files
IQKeyboardManager/Demo/Objective_C_Demo/ViewController/TextFieldViewController.m
hackiftekhar 6becc06ca3 - Converted Obj-C demo with Autolayout
- Enhanced demo project and added various examples demonstrating almost all properties of library.
- Enhanced library Settings Controller.
- Moved some contents of README.md file to other files.
2016-05-22 23:13:04 +05:30

146 lines
5.0 KiB
Objective-C

//
// TextFieldViewController.m
// KeyboardTextFieldDemo
#import "TextFieldViewController.h"
#import "IQKeyboardManager.h"
#import "IQDropDownTextField.h"
#import "IQUIView+IQKeyboardToolbar.h"
#import "IQUITextFieldView+Additions.h"
@interface TextFieldViewController ()<UIPopoverPresentationControllerDelegate>
@end
@implementation TextFieldViewController
{
IBOutlet UITextField *textField3;
IBOutlet IQDropDownTextField *dropDownTextField;
}
#pragma mark - View lifecycle
-(void)previousAction:(UITextField*)textField
{
NSLog(@"%@",NSStringFromSelector(_cmd));
}
-(void)nextAction:(UITextField*)textField
{
NSLog(@"%@",NSStringFromSelector(_cmd));
}
-(void)doneAction:(UITextField*)textField
{
NSLog(@"%@",NSStringFromSelector(_cmd));
}
- (void)viewDidLoad
{
[super viewDidLoad];
[textField3 setCustomPreviousTarget:self action:@selector(previousAction:)];
[textField3 setCustomNextTarget:self action:@selector(nextAction:)];
[textField3 setCustomDoneTarget:self action:@selector(doneAction:)];
dropDownTextField.keyboardDistanceFromTextField = 150;
[dropDownTextField setItemList:@[@"Zero Line Of Code",
@"No More UIScrollView",
@"No More Subclasses",
@"No More Manual Work",
@"No More #imports",
@"Device Orientation support",
@"UITextField Category for Keyboard",
@"Enable/Desable Keyboard Manager",
@"Customize InputView support",
@"IQTextView for placeholder support",
@"Automanage keyboard toolbar",
@"Can set keyboard and textFiled distance",
@"Can resign on touching outside",
@"Auto adjust textView's height ",
@"Adopt tintColor from textField",
@"Customize keyboardAppearance",
@"play sound on next/prev/done"]];
}
-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
if (self.presentingViewController)
{
[buttonPush setHidden:YES];
[buttonPresent setTitle:@"Dismiss" forState:UIControlStateNormal];
}
}
- (IBAction)presentClicked:(id)sender
{
@try {
if (!self.presentingViewController)
{
TextFieldViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:NSStringFromClass([TextFieldViewController class])];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:controller];
navigationController.navigationBar.tintColor = self.navigationController.navigationBar.tintColor;
navigationController.navigationBar.barTintColor = self.navigationController.navigationBar.barTintColor;
[navigationController setModalTransitionStyle:arc4random()%4];
// TransitionStylePartialCurl can only be presented by FullScreen style.
if (navigationController.modalTransitionStyle == UIModalTransitionStylePartialCurl)
navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
else
navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:navigationController animated:YES completion:nil];
}
else
{
[self dismissViewControllerAnimated:YES completion:nil];
}
}
@catch (NSException *exception) {
NSLog(@"Exception:%@",exception);
}
@finally {
}
}
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"SettingsNavigationController"])
{
segue.destinationViewController.modalPresentationStyle = UIModalPresentationPopover;
segue.destinationViewController.popoverPresentationController.barButtonItem = sender;
CGFloat heightWidth = MAX(CGRectGetWidth([[UIScreen mainScreen] bounds]), CGRectGetHeight([[UIScreen mainScreen] bounds]));
segue.destinationViewController.preferredContentSize = CGSizeMake(heightWidth, heightWidth);
segue.destinationViewController.popoverPresentationController.delegate = self;
}
}
- (UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller
{
return UIModalPresentationNone;
}
-(void)prepareForPopoverPresentation:(UIPopoverPresentationController *)popoverPresentationController
{
[self.view endEditing:YES];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
}
- (BOOL)shouldAutorotate
{
return YES;
}
@end