Added explicit check for _UIQueuingScrollView for UIPageViewController

This commit is contained in:
hackiftekhar
2015-01-04 16:36:32 +05:30
parent 138b7231f8
commit fa07cd0afc
5 changed files with 4661 additions and 1196 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -112,15 +112,15 @@
{
if (textField.isAskingCanBecomeFirstResponder == NO)
{
UIAlertController* actionSheet = [UIAlertController alertControllerWithTitle:@"test" message:nil preferredStyle:UIAlertControllerStyleActionSheet];
[actionSheet addAction:[UIAlertAction actionWithTitle:NSLocalizedString(@"cancel", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
}]];
[self presentViewController:actionSheet animated:YES completion:nil];
// UIAlertController* actionSheet = [UIAlertController alertControllerWithTitle:@"test" message:nil preferredStyle:UIAlertControllerStyleActionSheet];
// [actionSheet addAction:[UIAlertAction actionWithTitle:NSLocalizedString(@"cancel", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
// }]];
// [self presentViewController:actionSheet animated:YES completion:nil];
//// //Do your work on tapping textField.
// UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"IQKeyboardManager" message:@"Do your custom work here" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
//// alertView.alertViewStyle = UIAlertViewStylePlainTextInput;
// [alertView show];
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"IQKeyboardManager" message:@"Do your custom work here" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
// alertView.alertViewStyle = UIAlertViewStylePlainTextInput;
[alertView show];
}
return NO;