IQKeyboardManager.m
82.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
//
// IQKeyboardManager.m
// https://github.com/hackiftekhar/IQKeyboardManager
// Copyright (c) 2013-15 Iftekhar Qurashi.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#import "IQKeyboardManager.h"
#import "IQUIView+Hierarchy.h"
#import "IQUIView+IQKeyboardToolbar.h"
#import "IQUIWindow+Hierarchy.h"
#import "IQNSArray+Sort.h"
#import "IQToolbar.h"
#import "IQBarButtonItem.h"
#import "IQKeyboardManagerConstantsInternal.h"
#import "IQUIScrollView+Additions.h"
#import "IQUITextFieldView+Additions.h"
#import "IQUIViewController+Additions.h"
#import <UIKit/UINavigationBar.h>
#import <UIKit/UITapGestureRecognizer.h>
#import <UIKit/UITextField.h>
#import <UIKit/UITextView.h>
#import <UIKit/UITableViewController.h>
#import <UIKit/UINavigationController.h>
#import <UIKit/UITableView.h>
#import <UIKit/UITouch.h>
#import <UIKit/UICollectionView.h>
#import <UIKit/NSLayoutConstraint.h>
NSInteger const kIQDoneButtonToolbarTag = -1002;
NSInteger const kIQPreviousNextButtonToolbarTag = -1005;
void _IQShowLog(NSString *logString);
@interface IQKeyboardManager()<UIGestureRecognizerDelegate>
// Private helper methods
- (void)adjustFrame;
// Private function to manipulate RootViewController's frame with animation.
- (void)setRootViewFrame:(CGRect)frame;
// Keyboard Notification methods
- (void)keyboardWillShow:(NSNotification*)aNotification;
- (void)keyboardWillHide:(NSNotification*)aNotification;
- (void)keyboardDidHide:(NSNotification*)aNotification;
// UITextField/UITextView Notification methods
- (void)textFieldViewDidBeginEditing:(NSNotification*)notification;
- (void)textFieldViewDidEndEditing:(NSNotification*)notification;
- (void)textFieldViewDidChange:(NSNotification*)notification;
// Rotation notification
- (void)willChangeStatusBarOrientation:(NSNotification*)aNotification;
// Tap Recognizer
- (void)tapRecognized:(UITapGestureRecognizer*)gesture;
// Next/Previous/Done methods
- (void)previousAction:(id)segmentedControl;
- (void)nextAction:(id)segmentedControl;
- (void)doneAction:(IQBarButtonItem*)barButton;
// Adding Removing IQToolbar methods
- (NSArray*)responderViews;
- (void)addToolbarIfRequired;
- (void)removeToolbarIfRequired;
@end
@implementation IQKeyboardManager
{
@package
/*******************************************/
/** To save UITextField/UITextView object voa textField/textView notifications. */
__weak UIView *_textFieldView;
/** used with canAdjustTextView boolean. */
__block CGRect _textFieldViewIntialFrame;
/** To save rootViewController.view.frame. */
CGRect _topViewBeginRect;
/** To save rootViewController */
__weak UIViewController *_rootViewController;
/** To save topBottomLayoutConstraint original constant */
CGFloat _layoutGuideConstraintInitialConstant;
/*******************************************/
/** Variable to save lastScrollView that was scrolled. */
__weak UIScrollView *_lastScrollView;
/** LastScrollView's initial contentInsets. */
UIEdgeInsets _startingContentInsets;
/** LastScrollView's initial scrollIndicatorInsets. */
UIEdgeInsets _startingScrollIndicatorInsets;
/** LastScrollView's initial contentOffset. */
CGPoint _startingContentOffset;
/*******************************************/
/** To save keyboardWillShowNotification. Needed for enable keyboard functionality. */
NSNotification *_kbShowNotification;
/** To save keyboard size. */
CGSize _kbSize;
/** To save keyboard animation duration. */
CGFloat _animationDuration;
/** To mimic the keyboard animation */
NSInteger _animationCurve;
/*******************************************/
/** TapGesture to resign keyboard on view's touch. */
UITapGestureRecognizer *_tapGesture;
/*******************************************/
/** Set of restricted classes for library */
NSMutableSet *_disabledClasses;
/** Set of restricted classes for adding toolbar */
NSMutableSet *_disabledToolbarClasses;
/** Set of permitted classes to add all inner textField as siblings */
NSMutableSet *_toolbarPreviousNextConsideredClass;
/*******************************************/
struct {
/** used with canAdjustTextView to detect a textFieldView frame is changes or not. (Bug ID: #92)*/
unsigned int isTextFieldViewFrameChanged:1;
/** Boolean to maintain keyboard is showing or it is hide. To solve rootViewController.view.frame calculations. */
unsigned int isKeyboardShowing:1;
} _keyboardManagerFlags;
}
//UIKeyboard handling
@synthesize enable = _enable;
@synthesize keyboardDistanceFromTextField = _keyboardDistanceFromTextField;
@synthesize preventShowingBottomBlankSpace = _preventShowingBottomBlankSpace;
//Keyboard Appearance handling
@synthesize overrideKeyboardAppearance = _overrideKeyboardAppearance;
@synthesize keyboardAppearance = _keyboardAppearance;
//IQToolbar handling
@synthesize enableAutoToolbar = _enableAutoToolbar;
@synthesize toolbarManageBehaviour = _toolbarManageBehaviour;
@synthesize shouldToolbarUsesTextFieldTintColor = _shouldToolbarUsesTextFieldTintColor;
@synthesize toolbarTintColor = _toolbarTintColor;
@synthesize shouldShowTextFieldPlaceholder = _shouldShowTextFieldPlaceholder;
@synthesize placeholderFont = _placeholderFont;
//TextView handling
@synthesize canAdjustTextView = _canAdjustTextView;
@synthesize shouldFixTextViewClip = _shouldFixTextViewClip;
//Resign handling
@synthesize shouldResignOnTouchOutside = _shouldResignOnTouchOutside;
//Sound handling
@synthesize shouldPlayInputClicks = _shouldPlayInputClicks;
//Animation handling
@synthesize shouldAdoptDefaultKeyboardAnimation = _shouldAdoptDefaultKeyboardAnimation;
@synthesize layoutIfNeededOnUpdate = _layoutIfNeededOnUpdate;
//ScrollView handling
@synthesize shouldRestoreScrollViewContentOffset= _shouldRestoreScrollViewContentOffset;
#pragma mark - Initializing functions
/** Override +load method to enable KeyboardManager when class loader load IQKeyboardManager. Enabling when app starts (No need to write any code) */
+(void)load
{
//Enabling IQKeyboardManager.
[[IQKeyboardManager sharedManager] setEnable:YES];
}
/* Singleton Object Initialization. */
-(instancetype)init
{
if (self = [super init])
{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
// Registering for keyboard notification.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidHide:) name:UIKeyboardDidHideNotification object:nil];
// Registering for textField notification.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldViewDidBeginEditing:) name:UITextFieldTextDidBeginEditingNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldViewDidEndEditing:) name:UITextFieldTextDidEndEditingNotification object:nil];
// Registering for textView notification.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldViewDidBeginEditing:) name:UITextViewTextDidBeginEditingNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldViewDidEndEditing:) name:UITextViewTextDidEndEditingNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldViewDidChange:) name:UITextViewTextDidChangeNotification object:nil];
// Registering for orientation changes notification
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(willChangeStatusBarOrientation:) name:UIApplicationWillChangeStatusBarOrientationNotification object:nil];
//Creating gesture for @shouldResignOnTouchOutside. (Enhancement ID: #14)
_tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapRecognized:)];
_tapGesture.cancelsTouchesInView = NO;
[_tapGesture setDelegate:self];
_tapGesture.enabled = _shouldResignOnTouchOutside;
//Setting it's initial values
_enable = NO; //This enables in +(void)load method.
_animationDuration = 0.25;
_animationCurve = UIViewAnimationCurveEaseInOut;
[self setKeyboardDistanceFromTextField:10.0];
[self setCanAdjustTextView:NO];
[self setShouldPlayInputClicks:NO];
[self setShouldResignOnTouchOutside:NO];
[self setOverrideKeyboardAppearance:NO];
[self setKeyboardAppearance:UIKeyboardAppearanceDefault];
[self setEnableAutoToolbar:YES];
[self setPreventShowingBottomBlankSpace:YES];
[self setShouldShowTextFieldPlaceholder:YES];
[self setShouldAdoptDefaultKeyboardAnimation:YES];
[self setShouldRestoreScrollViewContentOffset:NO];
[self setToolbarManageBehaviour:IQAutoToolbarBySubviews];
[self setLayoutIfNeededOnUpdate:NO];
//Initializing disabled classes Set.
_disabledClasses = [[NSMutableSet alloc] initWithObjects:[UITableViewController class], nil];
_disabledToolbarClasses = [[NSMutableSet alloc] init];
[self setShouldToolbarUsesTextFieldTintColor:NO];
[self setShouldFixTextViewClip:YES];
_toolbarPreviousNextConsideredClass = [[NSMutableSet alloc] initWithObjects:[UITableView class],[UICollectionView class], nil];
});
}
return self;
}
/* Automatically called from the `+(void)load` method. */
+ (instancetype)sharedManager
{
//Singleton instance
static IQKeyboardManager *kbManager;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
kbManager = [[self alloc] init];
});
return kbManager;
}
#pragma mark - Dealloc
-(void)dealloc
{
// Disable the keyboard manager.
[self setEnable:NO];
//Removing notification observers on dealloc.
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
#pragma mark - Property functions
-(void)setEnable:(BOOL)enable
{
// If not enabled, enable it.
if (enable == YES && _enable == NO)
{
//Setting NO to _enable.
_enable = enable;
//If keyboard is currently showing. Sending a fake notification for keyboardWillShow to adjust view according to keyboard.
if (_kbShowNotification) [self keyboardWillShow:_kbShowNotification];
_IQShowLog(IQLocalizedString(@"enabled", nil));
}
//If not disable, desable it.
else if (enable == NO && _enable == YES)
{
//Sending a fake notification for keyboardWillHide to retain view's original frame.
[self keyboardWillHide:nil];
//Setting NO to _enable.
_enable = enable;
_IQShowLog(IQLocalizedString(@"disabled", nil));
}
//If already disabled.
else if (enable == NO && _enable == NO)
{
_IQShowLog(IQLocalizedString(@"already disabled", nil));
}
//If already enabled.
else if (enable == YES && _enable == YES)
{
_IQShowLog(IQLocalizedString(@"already enabled", nil));
}
}
// Setting keyboard distance from text field.
-(void)setKeyboardDistanceFromTextField:(CGFloat)keyboardDistanceFromTextField
{
//Can't be less than zero. Minimum is zero.
_keyboardDistanceFromTextField = MAX(keyboardDistanceFromTextField, 0);
_IQShowLog([NSString stringWithFormat:@"keyboardDistanceFromTextField: %.2f",_keyboardDistanceFromTextField]);
}
/** Enabling/disable gesture on touching. */
-(void)setShouldResignOnTouchOutside:(BOOL)shouldResignOnTouchOutside
{
_IQShowLog([NSString stringWithFormat:@"shouldResignOnTouchOutside: %@",shouldResignOnTouchOutside?@"Yes":@"No"]);
_shouldResignOnTouchOutside = shouldResignOnTouchOutside;
//Enable/Disable gesture recognizer (Enhancement ID: #14)
[_tapGesture setEnabled:_shouldResignOnTouchOutside];
}
/** Enable/disable autotoolbar. Adding and removing toolbar if required. */
-(void)setEnableAutoToolbar:(BOOL)enableAutoToolbar
{
_enableAutoToolbar = enableAutoToolbar;
_IQShowLog([NSString stringWithFormat:@"enableAutoToolbar: %@",enableAutoToolbar?@"Yes":@"No"]);
//If enabled then adding toolbar.
if (_enableAutoToolbar == YES)
{
[self addToolbarIfRequired];
}
//Else removing toolbar.
else
{
[self removeToolbarIfRequired];
}
}
#pragma mark - Private Methods
/** Getting keyWindow. */
-(UIWindow *)keyWindow
{
if (_textFieldView.window)
{
return _textFieldView.window;
}
else
{
static UIWindow *_keyWindow = nil;
/* (Bug ID: #23, #25, #73) */
UIWindow *originalKeyWindow = [[UIApplication sharedApplication] keyWindow];
//If original key window is not nil and the cached keywindow is also not original keywindow then changing keywindow.
if (originalKeyWindow != nil && _keyWindow != originalKeyWindow) _keyWindow = originalKeyWindow;
return _keyWindow;
}
}
/* Helper function to manipulate RootViewController's frame with animation. */
-(void)setRootViewFrame:(CGRect)frame
{
// Getting topMost ViewController.
UIViewController *controller = [_textFieldView topMostController];
if (controller == nil) controller = [[self keyWindow] topMostController];
//frame size needs to be adjusted on iOS8 due to orientation API changes.
if (IQ_IS_IOS8_OR_GREATER)
{
frame.size = controller.view.frame.size;
}
// If can't get rootViewController then printing warning to user.
if (controller == nil)
_IQShowLog(IQLocalizedString(@"You must set UIWindow.rootViewController in your AppDelegate to work with IQKeyboardManager", nil));
//Used UIViewAnimationOptionBeginFromCurrentState to minimize strange animations.
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
// Setting it's new frame
[controller.view setFrame:frame];
//Animating content if needed (Bug ID: #204)
if (_layoutIfNeededOnUpdate)
{
//Animating content (Bug ID: #160)
[controller.view setNeedsLayout];
[controller.view layoutIfNeeded];
}
_IQShowLog([NSString stringWithFormat:@"Set %@ frame to : %@",[controller _IQDescription],NSStringFromCGRect(frame)]);
} completion:NULL];
}
/* Adjusting RootViewController's frame according to interface orientation. */
-(void)adjustFrame
{
// We are unable to get textField object while keyboard showing on UIWebView's textField. (Bug ID: #11)
if (_textFieldView == nil) return;
_IQShowLog([NSString stringWithFormat:@"****** %@ started ******",NSStringFromSelector(_cmd)]);
// Boolean to know keyboard is showing/hiding
_keyboardManagerFlags.isKeyboardShowing = YES;
// Getting KeyWindow object.
UIWindow *keyWindow = [self keyWindow];
// Getting RootViewController. (Bug ID: #1, #4)
UIViewController *rootController = [_textFieldView topMostController];
if (rootController == nil) rootController = [keyWindow topMostController];
//If it's iOS8 then we should do calculations according to portrait orientations. // (Bug ID: #64, #66)
#ifdef __IPHONE_8_0
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_8_0
UIInterfaceOrientation interfaceOrientation = UIInterfaceOrientationPortrait;
#else
UIInterfaceOrientation interfaceOrientation = IQ_IS_IOS8_OR_GREATER ? UIInterfaceOrientationPortrait : [rootController interfaceOrientation];
#endif
#else
UIInterfaceOrientation interfaceOrientation = [rootController interfaceOrientation];
#endif
// Converting Rectangle according to window bounds.
CGRect textFieldViewRect = [[_textFieldView superview] convertRect:_textFieldView.frame toView:keyWindow];
// Getting RootViewRect.
CGRect rootViewRect = [[rootController view] frame];
//Getting statusBarFrame
CGFloat topLayoutGuide = 0;
//Maintain keyboardDistanceFromTextField
CGFloat keyboardDistanceFromTextField = (_textFieldView.keyboardDistanceFromTextField == kIQUseDefaultKeyboardDistance)?_keyboardDistanceFromTextField:_textFieldView.keyboardDistanceFromTextField;
CGSize kbSize = _kbSize;
CGRect statusBarFrame = [[UIApplication sharedApplication] statusBarFrame];
// (Bug ID: #250)
IQLayoutGuidePosition layoutGuidePosition = IQLayoutGuidePositionNone;
NSLayoutConstraint *constraint = [[_textFieldView viewController] IQLayoutGuideConstraint];
//If topLayoutGuide constraint
if (constraint && (constraint.firstItem == [[_textFieldView viewController] topLayoutGuide] || constraint.secondItem == [[_textFieldView viewController] topLayoutGuide]))
{
layoutGuidePosition = IQLayoutGuidePositionTop;
}
//If bottomLayoutGuice constraint
else if (constraint && (constraint.firstItem == [[_textFieldView viewController] bottomLayoutGuide] || constraint.secondItem == [[_textFieldView viewController] bottomLayoutGuide]))
{
layoutGuidePosition = IQLayoutGuidePositionBottom;
}
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft:
case UIInterfaceOrientationLandscapeRight:
topLayoutGuide = CGRectGetWidth(statusBarFrame);
kbSize.width += keyboardDistanceFromTextField;
break;
case UIInterfaceOrientationPortrait:
case UIInterfaceOrientationPortraitUpsideDown:
topLayoutGuide = CGRectGetHeight(statusBarFrame);
kbSize.height += keyboardDistanceFromTextField;
break;
default:
break;
}
CGFloat move = 0;
// +Move positive = textField is hidden.
// -Move negative = textField is showing.
// Checking if there is bottomLayoutGuide attached (Bug ID: #250)
if (layoutGuidePosition == IQLayoutGuidePositionBottom)
{
// Calculating move position.
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft:
move = CGRectGetMaxX(textFieldViewRect)-(CGRectGetWidth(keyWindow.frame)-kbSize.width);
break;
case UIInterfaceOrientationLandscapeRight:
move = kbSize.width-CGRectGetMinX(textFieldViewRect);
break;
case UIInterfaceOrientationPortrait:
move = CGRectGetMaxY(textFieldViewRect)-(CGRectGetHeight(keyWindow.frame)-kbSize.height);
break;
case UIInterfaceOrientationPortraitUpsideDown:
move = kbSize.height-CGRectGetMinY(textFieldViewRect);
break;
default:
break;
}
}
else
{
// Calculating move position. Common for both normal and special cases.
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft:
move = MIN(CGRectGetMinX(textFieldViewRect)-(topLayoutGuide+5), CGRectGetMaxX(textFieldViewRect)-(CGRectGetWidth(keyWindow.frame)-kbSize.width));
break;
case UIInterfaceOrientationLandscapeRight:
move = MIN(CGRectGetWidth(keyWindow.frame)-CGRectGetMaxX(textFieldViewRect)-(topLayoutGuide+5), kbSize.width-CGRectGetMinX(textFieldViewRect));
break;
case UIInterfaceOrientationPortrait:
move = MIN(CGRectGetMinY(textFieldViewRect)-(topLayoutGuide+5), CGRectGetMaxY(textFieldViewRect)-(CGRectGetHeight(keyWindow.frame)-kbSize.height));
break;
case UIInterfaceOrientationPortraitUpsideDown:
move = MIN(CGRectGetHeight(keyWindow.frame)-CGRectGetMaxY(textFieldViewRect)-(topLayoutGuide+5), kbSize.height-CGRectGetMinY(textFieldViewRect));
break;
default:
break;
}
}
_IQShowLog([NSString stringWithFormat:@"Need to move: %.2f",move]);
// Getting it's superScrollView. // (Enhancement ID: #21, #24)
UIScrollView *superScrollView = (UIScrollView*)[_textFieldView superviewOfClassType:[UIScrollView class]];
//If there was a lastScrollView. // (Bug ID: #34)
if (_lastScrollView)
{
//If we can't find current superScrollView, then setting lastScrollView to it's original form.
if (superScrollView == nil)
{
_IQShowLog([NSString stringWithFormat:@"Restoring %@ contentInset to : %@ and contentOffset to : %@",[_lastScrollView _IQDescription],NSStringFromUIEdgeInsets(_startingContentInsets),NSStringFromCGPoint(_startingContentOffset)]);
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
[_lastScrollView setContentInset:_startingContentInsets];
_lastScrollView.scrollIndicatorInsets = _startingScrollIndicatorInsets;
} completion:NULL];
if (_lastScrollView.shouldRestoreScrollViewContentOffset)
{
[_lastScrollView setContentOffset:_startingContentOffset animated:YES];
}
_startingContentInsets = UIEdgeInsetsZero;
_startingScrollIndicatorInsets = UIEdgeInsetsZero;
_startingContentOffset = CGPointZero;
_lastScrollView = nil;
}
//If both scrollView's are different, then reset lastScrollView to it's original frame and setting current scrollView as last scrollView.
else if (superScrollView != _lastScrollView)
{
_IQShowLog([NSString stringWithFormat:@"Restoring %@ contentInset to : %@ and contentOffset to : %@",[_lastScrollView _IQDescription],NSStringFromUIEdgeInsets(_startingContentInsets),NSStringFromCGPoint(_startingContentOffset)]);
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
[_lastScrollView setContentInset:_startingContentInsets];
_lastScrollView.scrollIndicatorInsets = _startingScrollIndicatorInsets;
} completion:NULL];
if (_lastScrollView.shouldRestoreScrollViewContentOffset)
{
[_lastScrollView setContentOffset:_startingContentOffset animated:YES];
}
_lastScrollView = superScrollView;
_startingContentInsets = superScrollView.contentInset;
_startingScrollIndicatorInsets = superScrollView.scrollIndicatorInsets;
_startingContentOffset = superScrollView.contentOffset;
_IQShowLog([NSString stringWithFormat:@"Saving New %@ contentInset: %@ and contentOffset : %@",[_lastScrollView _IQDescription],NSStringFromUIEdgeInsets(_startingContentInsets),NSStringFromCGPoint(_startingContentOffset)]);
}
//Else the case where superScrollView == lastScrollView means we are on same scrollView after switching to different textField. So doing nothing
}
//If there was no lastScrollView and we found a current scrollView. then setting it as lastScrollView.
else if(superScrollView)
{
_lastScrollView = superScrollView;
_startingContentInsets = superScrollView.contentInset;
_startingContentOffset = superScrollView.contentOffset;
_startingScrollIndicatorInsets = superScrollView.contentInset;
_IQShowLog([NSString stringWithFormat:@"Saving %@ contentInset: %@ and contentOffset : %@",[_lastScrollView _IQDescription],NSStringFromUIEdgeInsets(_startingContentInsets),NSStringFromCGPoint(_startingContentOffset)]);
}
// Special case for ScrollView.
{
// If we found lastScrollView then setting it's contentOffset to show textField.
if (_lastScrollView)
{
//Saving
UIView *lastView = _textFieldView;
UIScrollView *superScrollView = _lastScrollView;
//Looping in upper hierarchy until we don't found any scrollView in it's upper hirarchy till UIWindow object.
while (superScrollView && (move>0?(move > (-superScrollView.contentOffset.y-superScrollView.contentInset.top)):superScrollView.contentOffset.y>0) )
{
//Getting lastViewRect.
CGRect lastViewRect = [[lastView superview] convertRect:lastView.frame toView:superScrollView];
//Calculating the expected Y offset from move and scrollView's contentOffset.
CGFloat shouldOffsetY = superScrollView.contentOffset.y - MIN(superScrollView.contentOffset.y,-move);
//Rearranging the expected Y offset according to the view.
shouldOffsetY = MIN(shouldOffsetY, lastViewRect.origin.y/*-5*/); //-5 is for good UI.//Commenting -5 (Bug ID: #69)
//[_textFieldView isKindOfClass:[UITextView class]] If is a UITextView type
//[superScrollView superviewOfClassType:[UIScrollView class]] == nil If processing scrollView is last scrollView in upper hierarchy (there is no other scrollView upper hierrchy.)
//shouldOffsetY >= 0 shouldOffsetY must be greater than in order to keep distance from navigationBar (Bug ID: #92)
if ([_textFieldView isKindOfClass:[UITextView class]] && [superScrollView superviewOfClassType:[UIScrollView class]] == nil && (shouldOffsetY >= 0))
{
CGFloat maintainTopLayout = 0;
//When uncommenting this, each calculation goes to well, but don't know why scrollView doesn't adjusting it's contentOffset at bottom
// if ([_textFieldView.viewController respondsToSelector:@selector(topLayoutGuide)])
// maintainTopLayout = [_textFieldView.viewController.topLayoutGuide length];
// else
maintainTopLayout = CGRectGetMaxY(_textFieldView.viewController.navigationController.navigationBar.frame);
maintainTopLayout+= 10; //For good UI
// Converting Rectangle according to window bounds.
CGRect currentTextFieldViewRect = [[_textFieldView superview] convertRect:_textFieldView.frame toView:keyWindow];
CGFloat expectedFixDistance = shouldOffsetY;
//Calculating expected fix distance which needs to be managed from navigation bar
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft:
expectedFixDistance = CGRectGetMinX(currentTextFieldViewRect) - maintainTopLayout;
break;
case UIInterfaceOrientationLandscapeRight:
expectedFixDistance = (CGRectGetWidth(keyWindow.frame)-CGRectGetMaxX(currentTextFieldViewRect)) - maintainTopLayout;
break;
case UIInterfaceOrientationPortrait:
expectedFixDistance = CGRectGetMinY(currentTextFieldViewRect) - maintainTopLayout;
break;
case UIInterfaceOrientationPortraitUpsideDown:
expectedFixDistance = (CGRectGetHeight(keyWindow.frame)-CGRectGetMaxY(currentTextFieldViewRect)) - maintainTopLayout;
break;
default:
break;
}
//Now if expectedOffsetY (superScrollView.contentOffset.y + expectedFixDistance) is lower than current shouldOffsetY, which means we're in a position where navigationBar up and hide, then reducing shouldOffsetY with expectedOffsetY (superScrollView.contentOffset.y + expectedFixDistance)
shouldOffsetY = MIN(shouldOffsetY, superScrollView.contentOffset.y + expectedFixDistance);
//Setting move to 0 because now we don't want to move any view anymore (All will be managed by our contentInset logic.
move = 0;
}
else
{
//Subtracting the Y offset from the move variable, because we are going to change scrollView's contentOffset.y to shouldOffsetY.
move -= (shouldOffsetY-superScrollView.contentOffset.y);
}
//Getting problem while using `setContentOffset:animated:`, So I used animation API.
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
_IQShowLog([NSString stringWithFormat:@"Adjusting %.2f to %@ ContentOffset",(superScrollView.contentOffset.y-shouldOffsetY),[superScrollView _IQDescription]]);
_IQShowLog([NSString stringWithFormat:@"Remaining Move: %.2f",move]);
superScrollView.contentOffset = CGPointMake(superScrollView.contentOffset.x, shouldOffsetY);
} completion:NULL];
// Getting next lastView & superScrollView.
lastView = superScrollView;
superScrollView = (UIScrollView*)[lastView superviewOfClassType:[UIScrollView class]];
}
//Updating contentInset
{
CGFloat bottom = 0;
CGRect lastScrollViewRect = [[_lastScrollView superview] convertRect:_lastScrollView.frame toView:keyWindow];
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft:
bottom = kbSize.width-(CGRectGetWidth(keyWindow.frame)-CGRectGetMaxX(lastScrollViewRect));
break;
case UIInterfaceOrientationLandscapeRight:
bottom = kbSize.width-CGRectGetMinX(lastScrollViewRect);
break;
case UIInterfaceOrientationPortrait:
bottom = kbSize.height-(CGRectGetHeight(keyWindow.frame)-CGRectGetMaxY(lastScrollViewRect));
break;
case UIInterfaceOrientationPortraitUpsideDown:
bottom = kbSize.height-CGRectGetMinY(lastScrollViewRect);
break;
default:
break;
}
// Update the insets so that the scroll vew doesn't shift incorrectly when the offset is near the bottom of the scroll view.
UIEdgeInsets movedInsets = _lastScrollView.contentInset;
movedInsets.bottom = MAX(_startingContentInsets.bottom, bottom);
_IQShowLog([NSString stringWithFormat:@"%@ old ContentInset : %@",[_lastScrollView _IQDescription], NSStringFromUIEdgeInsets(_lastScrollView.contentInset)]);
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
_lastScrollView.contentInset = movedInsets;
UIEdgeInsets newInset = _lastScrollView.scrollIndicatorInsets;
newInset.bottom = movedInsets.bottom - 10;
_lastScrollView.scrollIndicatorInsets = newInset;
} completion:NULL];
//Maintaining contentSize
if (_lastScrollView.contentSize.height<_lastScrollView.frame.size.height)
{
CGSize contentSize = _lastScrollView.contentSize;
contentSize.height = _lastScrollView.frame.size.height;
_lastScrollView.contentSize = contentSize;
}
_IQShowLog([NSString stringWithFormat:@"%@ new ContentInset : %@",[_lastScrollView _IQDescription], NSStringFromUIEdgeInsets(_lastScrollView.contentInset)]);
}
}
//Going ahead. No else if.
}
if (layoutGuidePosition == IQLayoutGuidePositionTop)
{
CGFloat constant = MIN(_layoutGuideConstraintInitialConstant, constraint.constant-move);
[UIView animateWithDuration:_animationDuration delay:0 options:(7<<16|UIViewAnimationOptionBeginFromCurrentState) animations:^{
constraint.constant = constant;
[_rootViewController.view setNeedsLayout];
[_rootViewController.view layoutIfNeeded];
} completion:^(BOOL finished) {
}];
}
//If bottomLayoutGuice constraint
else if (layoutGuidePosition == IQLayoutGuidePositionBottom)
{
CGFloat constant = MAX(_layoutGuideConstraintInitialConstant, constraint.constant+move);
[UIView animateWithDuration:_animationDuration delay:0 options:(7<<16|UIViewAnimationOptionBeginFromCurrentState) animations:^{
constraint.constant = constant;
[_rootViewController.view setNeedsLayout];
[_rootViewController.view layoutIfNeeded];
} completion:^(BOOL finished) {
}];
}
//If not constraint
else
{
//Special case for UITextView(Readjusting the move variable when textView hight is too big to fit on screen)
//_canAdjustTextView If we have permission to adjust the textView, then let's do it on behalf of user (Enhancement ID: #15)
//_lastScrollView If not having inside any scrollView, (now contentInset manages the full screen textView.
//[_textFieldView isKindOfClass:[UITextView class]] If is a UITextView type
//_isTextFieldViewFrameChanged If frame is not change by library in past (Bug ID: #92)
if (_canAdjustTextView && (_lastScrollView == nil) && [_textFieldView isKindOfClass:[UITextView class]] && _keyboardManagerFlags.isTextFieldViewFrameChanged == NO)
{
CGFloat textViewHeight = CGRectGetHeight(_textFieldView.frame);
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft:
case UIInterfaceOrientationLandscapeRight:
textViewHeight = MIN(textViewHeight, (CGRectGetWidth(keyWindow.frame)-kbSize.width-(topLayoutGuide+5)));
break;
case UIInterfaceOrientationPortrait:
case UIInterfaceOrientationPortraitUpsideDown:
textViewHeight = MIN(textViewHeight, (CGRectGetHeight(keyWindow.frame)-kbSize.height-(topLayoutGuide+5)));
break;
default:
break;
}
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
_IQShowLog([NSString stringWithFormat:@"%@ Old Frame : %@",[_textFieldView _IQDescription], NSStringFromCGRect(_textFieldView.frame)]);
CGRect textFieldViewRect = _textFieldView.frame;
textFieldViewRect.size.height = textViewHeight;
_textFieldView.frame = textFieldViewRect;
_keyboardManagerFlags.isTextFieldViewFrameChanged = YES;
_IQShowLog([NSString stringWithFormat:@"%@ New Frame : %@",[_textFieldView _IQDescription], NSStringFromCGRect(_textFieldView.frame)]);
} completion:NULL];
}
// Special case for iPad modalPresentationStyle.
if ([rootController modalPresentationStyle] == UIModalPresentationFormSheet ||
[rootController modalPresentationStyle] == UIModalPresentationPageSheet)
{
_IQShowLog([NSString stringWithFormat:@"Found Special case for Model Presentation Style: %ld",(long)(rootController.modalPresentationStyle)]);
// +Positive or zero.
if (move>=0)
{
// We should only manipulate y.
rootViewRect.origin.y -= move;
// From now prevent keyboard manager to slide up the rootView to more than keyboard height. (Bug ID: #93)
if (_preventShowingBottomBlankSpace == YES)
{
CGFloat minimumY = 0;
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft:
case UIInterfaceOrientationLandscapeRight:
minimumY = CGRectGetWidth(keyWindow.frame)-rootViewRect.size.height-topLayoutGuide-(kbSize.width-keyboardDistanceFromTextField); break;
case UIInterfaceOrientationPortrait:
case UIInterfaceOrientationPortraitUpsideDown:
minimumY = (CGRectGetHeight(keyWindow.frame)-rootViewRect.size.height-topLayoutGuide)/2-(kbSize.height-keyboardDistanceFromTextField); break;
default: break;
}
rootViewRect.origin.y = MAX(rootViewRect.origin.y, minimumY);
}
_IQShowLog(@"Moving Upward");
// Setting adjusted rootViewRect
[self setRootViewFrame:rootViewRect];
}
// -Negative
else
{
// Calculating disturbed distance. Pull Request #3
CGFloat disturbDistance = CGRectGetMinY(rootViewRect)-CGRectGetMinY(_topViewBeginRect);
// disturbDistance Negative = frame disturbed.
// disturbDistance positive = frame not disturbed.
if(disturbDistance<0)
{
// We should only manipulate y.
rootViewRect.origin.y -= MAX(move, disturbDistance);
_IQShowLog(@"Moving Downward");
// Setting adjusted rootViewRect
[self setRootViewFrame:rootViewRect];
}
}
}
//If presentation style is neither UIModalPresentationFormSheet nor UIModalPresentationPageSheet then going ahead.(General case)
else
{
// +Positive or zero.
if (move>=0)
{
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft: rootViewRect.origin.x -= move; break;
case UIInterfaceOrientationLandscapeRight: rootViewRect.origin.x += move; break;
case UIInterfaceOrientationPortrait: rootViewRect.origin.y -= move; break;
case UIInterfaceOrientationPortraitUpsideDown: rootViewRect.origin.y += move; break;
default: break;
}
// From now prevent keyboard manager to slide up the rootView to more than keyboard height. (Bug ID: #93)
if (_preventShowingBottomBlankSpace == YES)
{
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft: rootViewRect.origin.x = MAX(rootViewRect.origin.x, MIN(0,-kbSize.width+keyboardDistanceFromTextField)); break;
case UIInterfaceOrientationLandscapeRight: rootViewRect.origin.x = MIN(rootViewRect.origin.x, +kbSize.width-keyboardDistanceFromTextField); break;
case UIInterfaceOrientationPortrait: rootViewRect.origin.y = MAX(rootViewRect.origin.y, MIN(0, -kbSize.height+keyboardDistanceFromTextField)); break;
case UIInterfaceOrientationPortraitUpsideDown: rootViewRect.origin.y = MIN(rootViewRect.origin.y, +kbSize.height-keyboardDistanceFromTextField); break;
default: break;
}
}
_IQShowLog(@"Moving Upward");
// Setting adjusted rootViewRect
[self setRootViewFrame:rootViewRect];
}
// -Negative
else
{
CGFloat disturbDistance = 0;
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft:
disturbDistance = CGRectGetMinX(rootViewRect)-CGRectGetMinX(_topViewBeginRect);
break;
case UIInterfaceOrientationLandscapeRight:
disturbDistance = CGRectGetMinX(_topViewBeginRect)-CGRectGetMinX(rootViewRect);
break;
case UIInterfaceOrientationPortrait:
disturbDistance = CGRectGetMinY(rootViewRect)-CGRectGetMinY(_topViewBeginRect);
break;
case UIInterfaceOrientationPortraitUpsideDown:
disturbDistance = CGRectGetMinY(_topViewBeginRect)-CGRectGetMinY(rootViewRect);
break;
default:
break;
}
// disturbDistance Negative = frame disturbed. Pull Request #3
// disturbDistance positive = frame not disturbed.
if(disturbDistance<0)
{
switch (interfaceOrientation)
{
case UIInterfaceOrientationLandscapeLeft: rootViewRect.origin.x -= MAX(move, disturbDistance); break;
case UIInterfaceOrientationLandscapeRight: rootViewRect.origin.x += MAX(move, disturbDistance); break;
case UIInterfaceOrientationPortrait: rootViewRect.origin.y -= MAX(move, disturbDistance); break;
case UIInterfaceOrientationPortraitUpsideDown: rootViewRect.origin.y += MAX(move, disturbDistance); break;
default: break;
}
_IQShowLog(@"Moving Downward");
// Setting adjusted rootViewRect
[self setRootViewFrame:rootViewRect];
}
}
}
}
_IQShowLog([NSString stringWithFormat:@"****** %@ ended ******",NSStringFromSelector(_cmd)]);
}
#pragma mark - UIKeyboad Notification methods
/* UIKeyboardWillShowNotification. */
-(void)keyboardWillShow:(NSNotification*)aNotification
{
_kbShowNotification = aNotification;
if (_enable == NO) return;
_IQShowLog([NSString stringWithFormat:@"****** %@ started ******",NSStringFromSelector(_cmd)]);
//Due to orientation callback we need to resave it's original frame. // (Bug ID: #46)
//Added _isTextFieldViewFrameChanged check. Saving textFieldView current frame to use it with canAdjustTextView if textViewFrame has already not been changed. (Bug ID: #92)
if (_keyboardManagerFlags.isTextFieldViewFrameChanged == NO && _textFieldView)
{
_textFieldViewIntialFrame = _textFieldView.frame;
_IQShowLog([NSString stringWithFormat:@"Saving %@ Initial frame :%@",[_textFieldView _IQDescription],NSStringFromCGRect(_textFieldViewIntialFrame)]);
}
if (CGRectEqualToRect(_topViewBeginRect, CGRectZero)) // (Bug ID: #5)
{
// keyboard is not showing(At the beginning only). We should save rootViewRect.
_rootViewController = [_textFieldView topMostController];
if (_rootViewController == nil) _rootViewController = [[self keyWindow] topMostController];
_topViewBeginRect = _rootViewController.view.frame;
_IQShowLog([NSString stringWithFormat:@"Saving %@ beginning Frame: %@",[_rootViewController _IQDescription] ,NSStringFromCGRect(_topViewBeginRect)]);
}
if (_shouldAdoptDefaultKeyboardAnimation)
{
// Getting keyboard animation.
_animationCurve = [[[aNotification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] integerValue];
_animationCurve = _animationCurve<<16;
}
else
{
_animationCurve = UIViewAnimationOptionCurveEaseOut;
}
// Getting keyboard animation duration
CGFloat duration = [[[aNotification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] floatValue];
//Saving animation duration
if (duration != 0.0) _animationDuration = duration;
CGSize oldKBSize = _kbSize;
// Getting UIKeyboardSize.
CGRect kbFrame = [[[aNotification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
_kbSize = kbFrame.size;
_IQShowLog([NSString stringWithFormat:@"UIKeyboard Size : %@",NSStringFromCGSize(_kbSize)]);
//If last restored keyboard size is different(any orientation accure), then refresh. otherwise not.
if (!CGSizeEqualToSize(_kbSize, oldKBSize))
{
//If _textFieldView is inside UIAlertView then do nothing. (Bug ID: #37, #74, #76)
//See notes:- https://developer.apple.com/Library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html. If it is UIAlertView textField then do not affect anything (Bug ID: #70).
if (_textFieldView != nil && [_textFieldView isAlertViewTextField] == NO)
{
UIViewController *textFieldViewController = [_textFieldView viewController];
BOOL shouldIgnore = NO;
for (Class disabledClass in _disabledClasses)
{
if ([textFieldViewController isKindOfClass:disabledClass])
{
shouldIgnore = YES;
break;
}
}
if (shouldIgnore == NO)
{
[self adjustFrame];
}
}
}
_IQShowLog([NSString stringWithFormat:@"****** %@ ended ******",NSStringFromSelector(_cmd)]);
}
/* UIKeyboardWillHideNotification. So setting rootViewController to it's default frame. */
- (void)keyboardWillHide:(NSNotification*)aNotification
{
//If it's not a fake notification generated by [self setEnable:NO].
if (aNotification != nil) _kbShowNotification = nil;
//If not enabled then do nothing.
if (_enable == NO) return;
_IQShowLog([NSString stringWithFormat:@"****** %@ started ******",NSStringFromSelector(_cmd)]);
//Commented due to #56. Added all the conditions below to handle UIWebView's textFields. (Bug ID: #56)
// We are unable to get textField object while keyboard showing on UIWebView's textField. (Bug ID: #11)
// if (_textFieldView == nil) return;
// Boolean to know keyboard is showing/hiding
_keyboardManagerFlags.isKeyboardShowing = NO;
// Getting keyboard animation duration
CGFloat aDuration = [[[aNotification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] floatValue];
if (aDuration!= 0.0f)
{
_animationDuration = aDuration;
}
//Restoring the contentOffset of the lastScrollView
if (_lastScrollView)
{
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
_lastScrollView.contentInset = _startingContentInsets;
_lastScrollView.scrollIndicatorInsets = _startingScrollIndicatorInsets;
if (_lastScrollView.shouldRestoreScrollViewContentOffset)
{
_lastScrollView.contentOffset = _startingContentOffset;
}
_IQShowLog([NSString stringWithFormat:@"Restoring %@ contentInset to : %@ and contentOffset to : %@",[_lastScrollView _IQDescription],NSStringFromUIEdgeInsets(_startingContentInsets),NSStringFromCGPoint(_startingContentOffset)]);
// TODO: restore scrollView state
// This is temporary solution. Have to implement the save and restore scrollView state
UIScrollView *superscrollView = _lastScrollView;
do
{
CGSize contentSize = CGSizeMake(MAX(superscrollView.contentSize.width, CGRectGetWidth(superscrollView.frame)), MAX(superscrollView.contentSize.height, CGRectGetHeight(superscrollView.frame)));
CGFloat minimumY = contentSize.height-CGRectGetHeight(superscrollView.frame);
if (minimumY<superscrollView.contentOffset.y)
{
superscrollView.contentOffset = CGPointMake(superscrollView.contentOffset.x, minimumY);
_IQShowLog([NSString stringWithFormat:@"Restoring %@ contentOffset to : %@",[superscrollView _IQDescription],NSStringFromCGPoint(superscrollView.contentOffset)]);
}
} while ((superscrollView = (UIScrollView*)[superscrollView superviewOfClassType:[UIScrollView class]]));
} completion:NULL];
}
// Setting rootViewController frame to it's original position. // (Bug ID: #18)
if (!CGRectEqualToRect(_topViewBeginRect, CGRectZero) && _rootViewController)
{
//frame size needs to be adjusted on iOS8 due to orientation API changes.
if (IQ_IS_IOS8_OR_GREATER)
{
_topViewBeginRect.size = _rootViewController.view.frame.size;
}
//Used UIViewAnimationOptionBeginFromCurrentState to minimize strange animations.
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
NSLayoutConstraint *constraint = [[_textFieldView viewController] IQLayoutGuideConstraint];
//If done LayoutGuide tweak
if (constraint &&
((constraint.firstItem == [[_textFieldView viewController] topLayoutGuide] || constraint.secondItem == [[_textFieldView viewController] topLayoutGuide]) ||
(constraint.firstItem == [[_textFieldView viewController] bottomLayoutGuide] || constraint.secondItem == [[_textFieldView viewController] bottomLayoutGuide])))
{
constraint.constant = _layoutGuideConstraintInitialConstant;
[_rootViewController.view setNeedsLayout];
[_rootViewController.view layoutIfNeeded];
}
else
{
_IQShowLog([NSString stringWithFormat:@"Restoring %@ frame to : %@",[_rootViewController _IQDescription],NSStringFromCGRect(_topViewBeginRect)]);
// Setting it's new frame
[_rootViewController.view setFrame:_topViewBeginRect];
//Animating content if needed (Bug ID: #204)
if (_layoutIfNeededOnUpdate)
{
//Animating content (Bug ID: #160)
[_rootViewController.view setNeedsLayout];
[_rootViewController.view layoutIfNeeded];
}
}
} completion:NULL];
_rootViewController = nil;
}
//Reset all values
_lastScrollView = nil;
_kbSize = CGSizeZero;
_startingContentInsets = UIEdgeInsetsZero;
_startingScrollIndicatorInsets = UIEdgeInsetsZero;
_startingContentOffset = CGPointZero;
// topViewBeginRect = CGRectZero; //Commented due to #82
_IQShowLog([NSString stringWithFormat:@"****** %@ ended ******",NSStringFromSelector(_cmd)]);
}
/* UIKeyboardDidHideNotification. So topViewBeginRect can be set to CGRectZero. */
- (void)keyboardDidHide:(NSNotification*)aNotification
{
_IQShowLog([NSString stringWithFormat:@"****** %@ started ******",NSStringFromSelector(_cmd)]);
_topViewBeginRect = CGRectZero;
_IQShowLog([NSString stringWithFormat:@"****** %@ ended ******",NSStringFromSelector(_cmd)]);
}
#pragma mark - UITextFieldView Delegate methods
/** UITextFieldTextDidBeginEditingNotification, UITextViewTextDidBeginEditingNotification. Fetching UITextFieldView object. */
-(void)textFieldViewDidBeginEditing:(NSNotification*)notification
{
_IQShowLog([NSString stringWithFormat:@"****** %@ started ******",NSStringFromSelector(_cmd)]);
// Getting object
_textFieldView = notification.object;
if (_overrideKeyboardAppearance == YES)
{
UITextField *textField = (UITextField*)_textFieldView;
//If keyboard appearance is not like the provided appearance
if (textField.keyboardAppearance != _keyboardAppearance)
{
//Setting textField keyboard appearance and reloading inputViews.
textField.keyboardAppearance = _keyboardAppearance;
[textField reloadInputViews];
}
}
// Saving textFieldView current frame to use it with canAdjustTextView if textViewFrame has already not been changed.
//Added _isTextFieldViewFrameChanged check. (Bug ID: #92)
if (_keyboardManagerFlags.isTextFieldViewFrameChanged == NO && _textFieldView)
{
_textFieldViewIntialFrame = _textFieldView.frame;
_IQShowLog([NSString stringWithFormat:@"Saving %@ Initial frame :%@",[_textFieldView _IQDescription],NSStringFromCGRect(_textFieldViewIntialFrame)]);
}
//If autoToolbar enable, then add toolbar on all the UITextField/UITextView's if required.
if (_enableAutoToolbar)
{
_IQShowLog(@"adding UIToolbars if required");
//UITextView special case. Keyboard Notification is firing before textView notification so we need to reload it's inputViews.
if ([_textFieldView isKindOfClass:[UITextView class]] && _textFieldView.inputAccessoryView == nil)
{
[UIView animateWithDuration:0.00001 delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
[self addToolbarIfRequired];
} completion:^(BOOL finished) {
//RestoringTextView before reloading inputViews
if (_keyboardManagerFlags.isTextFieldViewFrameChanged)
{
_keyboardManagerFlags.isTextFieldViewFrameChanged = NO;
_textFieldView.frame = _textFieldViewIntialFrame;
}
//On textView toolbar didn't appear on first time, so forcing textView to reload it's inputViews.
[_textFieldView reloadInputViews];
}];
}
//Else adding toolbar
else
{
[self addToolbarIfRequired];
}
}
if (_enable == NO)
{
_IQShowLog([NSString stringWithFormat:@"****** %@ ended ******",NSStringFromSelector(_cmd)]);
return;
}
//Adding Geture recognizer to window (Enhancement ID: #14)
[_textFieldView.window addGestureRecognizer:_tapGesture];
if (_keyboardManagerFlags.isKeyboardShowing == NO) // (Bug ID: #5)
{
// keyboard is not showing(At the beginning only). We should save rootViewRect and _layoutGuideConstraintInitialConstant.
_layoutGuideConstraintInitialConstant = [[[_textFieldView viewController] IQLayoutGuideConstraint] constant];
_rootViewController = [_textFieldView topMostController];
if (_rootViewController == nil) _rootViewController = [[self keyWindow] topMostController];
_topViewBeginRect = _rootViewController.view.frame;
_IQShowLog([NSString stringWithFormat:@"Saving %@ beginning Frame: %@",[_rootViewController _IQDescription], NSStringFromCGRect(_topViewBeginRect)]);
}
//If _textFieldView is inside UIAlertView then do nothing. (Bug ID: #37, #74, #76)
//See notes:- https://developer.apple.com/Library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html. If it is UIAlertView textField then do not affect anything (Bug ID: #70).
if (_textFieldView != nil && [_textFieldView isAlertViewTextField] == NO)
{
//Getting textField viewController
UIViewController *textFieldViewController = [_textFieldView viewController];
BOOL shouldIgnore = NO;
for (Class disabledClass in _disabledClasses)
{
//If viewController is kind of disabled viewController class, then ignoring to adjust view.
if ([textFieldViewController isKindOfClass:disabledClass])
{
shouldIgnore = YES;
break;
}
}
//If shouldn't ignore.
if (shouldIgnore == NO)
{
// keyboard is already showing. adjust frame.
[self adjustFrame];
}
}
_IQShowLog([NSString stringWithFormat:@"****** %@ ended ******",NSStringFromSelector(_cmd)]);
}
/** UITextFieldTextDidEndEditingNotification, UITextViewTextDidEndEditingNotification. Removing fetched object. */
-(void)textFieldViewDidEndEditing:(NSNotification*)notification
{
_IQShowLog([NSString stringWithFormat:@"****** %@ started ******",NSStringFromSelector(_cmd)]);
//Removing gesture recognizer (Enhancement ID: #14)
[_textFieldView.window removeGestureRecognizer:_tapGesture];
// We check if there's a change in original frame or not.
if(_keyboardManagerFlags.isTextFieldViewFrameChanged == YES)
{
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
_keyboardManagerFlags.isTextFieldViewFrameChanged = NO;
_IQShowLog([NSString stringWithFormat:@"Restoring %@ frame to : %@",[_textFieldView _IQDescription],NSStringFromCGRect(_textFieldViewIntialFrame)]);
//Setting textField to it's initial frame
_textFieldView.frame = _textFieldViewIntialFrame;
} completion:NULL];
}
//Setting object to nil
_textFieldView = nil;
_IQShowLog([NSString stringWithFormat:@"****** %@ ended ******",NSStringFromSelector(_cmd)]);
}
/** UITextViewTextDidChangeNotificationBug, fix for iOS 7.0.x - http://stackoverflow.com/questions/18966675/uitextview-in-ios7-clips-the-last-line-of-text-string */
-(void)textFieldViewDidChange:(NSNotification*)notification // (Bug ID: #18)
{
if (_shouldFixTextViewClip == YES)
{
UITextView *textView = (UITextView *)notification.object;
CGRect line = [textView caretRectForPosition: textView.selectedTextRange.start];
CGFloat overflow = CGRectGetMaxY(line) - (textView.contentOffset.y + CGRectGetHeight(textView.bounds) - textView.contentInset.bottom - textView.contentInset.top);
//Added overflow conditions (Bug ID: 95)
if ( overflow > 0 && overflow < FLT_MAX)
{
// We are at the bottom of the visible text and introduced a line feed, scroll down (iOS 7 does not do it)
// Scroll caret to visible area
CGPoint offset = textView.contentOffset;
offset.y += overflow + 7; // leave 7 pixels margin
// Cannot animate with setContentOffset:animated: or caret will not appear
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
[textView setContentOffset:offset];
} completion:NULL];
}
}
}
#pragma mark - UIInterfaceOrientation Change notification methods
/** UIApplicationWillChangeStatusBarOrientationNotification. Need to set the textView to it's original position. If any frame changes made. (Bug ID: #92)*/
- (void)willChangeStatusBarOrientation:(NSNotification*)aNotification
{
_IQShowLog([NSString stringWithFormat:@"****** %@ started ******",NSStringFromSelector(_cmd)]);
//If textFieldViewInitialRect is saved then restore it.(UITextView case @canAdjustTextView)
if (_keyboardManagerFlags.isTextFieldViewFrameChanged == YES)
{
//Due to orientation callback we need to set it's original position.
[UIView animateWithDuration:_animationDuration delay:0 options:(_animationCurve|UIViewAnimationOptionBeginFromCurrentState) animations:^{
_keyboardManagerFlags.isTextFieldViewFrameChanged = NO;
_IQShowLog([NSString stringWithFormat:@"Restoring %@ frame to : %@",[_textFieldView _IQDescription],NSStringFromCGRect(_textFieldViewIntialFrame)]);
//Setting textField to it's initial frame
_textFieldView.frame = _textFieldViewIntialFrame;
} completion:NULL];
}
_IQShowLog([NSString stringWithFormat:@"****** %@ ended ******",NSStringFromSelector(_cmd)]);
}
#pragma mark AutoResign methods
/** Resigning on tap gesture. */
- (void)tapRecognized:(UITapGestureRecognizer*)gesture // (Enhancement ID: #14)
{
if (gesture.state == UIGestureRecognizerStateEnded)
{
//Resigning currently responder textField.
[self resignFirstResponder];
}
}
/** Note: returning YES is guaranteed to allow simultaneous recognition. returning NO is not guaranteed to prevent simultaneous recognition, as the other gesture's delegate may return YES. */
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
return NO;
}
/** To not detect touch events in a subclass of UIControl, these may have added their own selector for specific work */
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
// Should not recognize gesture if the clicked view is either UIControl or UINavigationBar(<Back button etc...) (Bug ID: #145)
return ([[touch view] isKindOfClass:[UIControl class]] || [[touch view] isKindOfClass:[UINavigationBar class]]) ? NO : YES;
}
/** Resigning textField. */
- (BOOL)resignFirstResponder
{
if (_textFieldView)
{
// Retaining textFieldView
UIView *textFieldRetain = _textFieldView;
//Resigning first responder
BOOL isResignFirstResponder = [_textFieldView resignFirstResponder];
// If it refuses then becoming it as first responder again. (Bug ID: #96)
if (isResignFirstResponder == NO)
{
//If it refuses to resign then becoming it first responder again for getting notifications callback.
[textFieldRetain becomeFirstResponder];
_IQShowLog([NSString stringWithFormat:@"Refuses to Resign first responder: %@",[_textFieldView _IQDescription]]);
}
return isResignFirstResponder;
}
else
{
return NO;
}
}
/** Returns YES if can navigate to previous responder textField/textView, otherwise NO. */
-(BOOL)canGoPrevious
{
//Getting all responder view's.
NSArray *textFields = [self responderViews];
//Getting index of current textField.
NSUInteger index = [textFields indexOfObject:_textFieldView];
//If it is not first textField. then it's previous object can becomeFirstResponder.
if (index != NSNotFound && index > 0)
{
return YES;
}
else
{
return NO;
}
}
/** Returns YES if can navigate to next responder textField/textView, otherwise NO. */
-(BOOL)canGoNext
{
//Getting all responder view's.
NSArray *textFields = [self responderViews];
//Getting index of current textField.
NSUInteger index = [textFields indexOfObject:_textFieldView];
//If it is not last textField. then it's next object becomeFirstResponder.
if (index != NSNotFound && index < textFields.count-1)
{
return YES;
}
else
{
return NO;
}
}
/** Navigate to previous responder textField/textView. */
-(BOOL)goPrevious
{
//Getting all responder view's.
NSArray *textFields = [self responderViews];
//Getting index of current textField.
NSUInteger index = [textFields indexOfObject:_textFieldView];
//If it is not first textField. then it's previous object becomeFirstResponder.
if (index != NSNotFound && index > 0)
{
UITextField *nextTextField = [textFields objectAtIndex:index-1];
// Retaining textFieldView
UIView *textFieldRetain = _textFieldView;
BOOL isAcceptAsFirstResponder = [nextTextField becomeFirstResponder];
// If it refuses then becoming previous textFieldView as first responder again. (Bug ID: #96)
if (isAcceptAsFirstResponder == NO)
{
//If next field refuses to become first responder then restoring old textField as first responder.
[textFieldRetain becomeFirstResponder];
_IQShowLog([NSString stringWithFormat:@"Refuses to become first responder: %@",[nextTextField _IQDescription]]);
}
return isAcceptAsFirstResponder;
}
else
{
return NO;
}
}
/** Navigate to next responder textField/textView. */
-(BOOL)goNext
{
//Getting all responder view's.
NSArray *textFields = [self responderViews];
//Getting index of current textField.
NSUInteger index = [textFields indexOfObject:_textFieldView];
//If it is not last textField. then it's next object becomeFirstResponder.
if (index != NSNotFound && index < textFields.count-1)
{
UITextField *nextTextField = [textFields objectAtIndex:index+1];
// Retaining textFieldView
UIView *textFieldRetain = _textFieldView;
BOOL isAcceptAsFirstResponder = [nextTextField becomeFirstResponder];
// If it refuses then becoming previous textFieldView as first responder again. (Bug ID: #96)
if (isAcceptAsFirstResponder == NO)
{
//If next field refuses to become first responder then restoring old textField as first responder.
[textFieldRetain becomeFirstResponder];
_IQShowLog([NSString stringWithFormat:@"Refuses to become first responder: %@",[nextTextField _IQDescription]]);
}
return isAcceptAsFirstResponder;
}
else
{
return NO;
}
}
#pragma mark AutoToolbar methods
/** Get all UITextField/UITextView siblings of textFieldView. */
-(NSArray*)responderViews
{
UIView *superConsideredView;
//If find any consider responderView in it's upper hierarchy then will get deepResponderView.
for (Class consideredClass in _toolbarPreviousNextConsideredClass)
{
superConsideredView = [_textFieldView superviewOfClassType:consideredClass];
if (superConsideredView != nil)
break;
}
//If there is a superConsideredView in view's hierarchy, then fetching all it's subview that responds. No sorting for superConsideredView, it's by subView position. (Enhancement ID: #22)
if (superConsideredView)
{
return [superConsideredView deepResponderViews];
}
//Otherwise fetching all the siblings
else
{
NSArray *textFields = [_textFieldView responderSiblings];
//Sorting textFields according to behaviour
switch (_toolbarManageBehaviour)
{
//If autoToolbar behaviour is bySubviews, then returning it.
case IQAutoToolbarBySubviews:
return textFields;
break;
//If autoToolbar behaviour is by tag, then sorting it according to tag property.
case IQAutoToolbarByTag:
return [textFields sortedArrayByTag];
break;
//If autoToolbar behaviour is by tag, then sorting it according to tag property.
case IQAutoToolbarByPosition:
return [textFields sortedArrayByPosition];
break;
default:
return nil;
break;
}
}
}
/** Add toolbar if it is required to add on textFields and it's siblings. */
-(void)addToolbarIfRequired
{
UIViewController *textFieldViewController = [_textFieldView viewController];
//If found any toolbar disabled classes then return. Will not add any toolbar.
for (Class disabledToolbarClass in _disabledToolbarClasses)
if ([textFieldViewController isKindOfClass:disabledToolbarClass])
{
[self removeToolbarIfRequired];
return;
}
// Getting all the sibling textFields.
NSArray *siblings = [self responderViews];
// If only one object is found, then adding only Done button.
if (siblings.count==1)
{
UITextField *textField = nil;
if ([siblings count])
textField = [siblings objectAtIndex:0]; //Not using firstObject method because iOS5 doesn't not support 'firstObject' method.
//Either there is no inputAccessoryView or if accessoryView is not appropriate for current situation(There is Previous/Next/Done toolbar).
//setInputAccessoryView: check (Bug ID: #307)
if ([textField respondsToSelector:@selector(setInputAccessoryView:)] && (![textField inputAccessoryView] || ([[textField inputAccessoryView] tag] == kIQPreviousNextButtonToolbarTag)))
{
static UIView *doneToolbar = nil;
if (doneToolbar == nil)
{
//Now adding textField placeholder text as title of IQToolbar (Enhancement ID: #27)
[textField addDoneOnKeyboardWithTarget:self action:@selector(doneAction:) shouldShowPlaceholder:_shouldShowTextFieldPlaceholder];
doneToolbar = textField.inputAccessoryView;
doneToolbar.tag = kIQDoneButtonToolbarTag; // (Bug ID: #78)
}
else
{
textField.inputAccessoryView = doneToolbar;
}
}
if ([textField.inputAccessoryView isKindOfClass:[IQToolbar class]] && textField.inputAccessoryView.tag == kIQDoneButtonToolbarTag)
{
IQToolbar *toolbar = (IQToolbar*)[textField inputAccessoryView];
//Bar style according to keyboard appearance
if ([textField respondsToSelector:@selector(keyboardAppearance)])
{
switch ([(UITextField*)textField keyboardAppearance])
{
case UIKeyboardAppearanceAlert:
{
toolbar.barStyle = UIBarStyleBlack;
[toolbar setTintColor:[UIColor whiteColor]];
}
break;
default:
{
toolbar.barStyle = UIBarStyleDefault;
//Setting toolbar tintColor // (Enhancement ID: #30)
if (_shouldToolbarUsesTextFieldTintColor)
{
toolbar.tintColor = [textField tintColor];
}
else if (_toolbarTintColor)
{
toolbar.tintColor = _toolbarTintColor;
}
else
{
toolbar.tintColor = [UIColor blackColor];
}
}
break;
}
}
//If need to show placeholder
if (_shouldShowTextFieldPlaceholder && textField.shouldHideTitle == NO)
{
//Updating placeholder //(Bug ID: #148)
if ([textField respondsToSelector:@selector(placeholder)])
{
if (toolbar.title == nil || [toolbar.title isEqualToString:textField.placeholder] == NO)
[toolbar setTitle:textField.placeholder];
}
//If doesn't recognised 'placeholder' method, then setting it's title to nil //(Bug ID: #272)
else
[toolbar setTitle:nil];
//Setting toolbar title font. // (Enhancement ID: #30)
if (_placeholderFont && [_placeholderFont isKindOfClass:[UIFont class]])
[toolbar setTitleFont:_placeholderFont];
}
else
{
//Updating placeholder //(Bug ID: #272)
[toolbar setTitle:nil];
}
}
}
else if(siblings.count)
{
// If more than 1 textField is found. then adding previous/next/done buttons on it.
for (UITextField *textField in siblings)
{
//Either there is no inputAccessoryView or if accessoryView is not appropriate for current situation(There is Done toolbar).
//setInputAccessoryView: check (Bug ID: #307)
if ([textField respondsToSelector:@selector(setInputAccessoryView:)] && (![textField inputAccessoryView] || [[textField inputAccessoryView] tag] == kIQDoneButtonToolbarTag))
{
//Now adding textField placeholder text as title of IQToolbar (Enhancement ID: #27)
[textField addPreviousNextDoneOnKeyboardWithTarget:self previousAction:@selector(previousAction:) nextAction:@selector(nextAction:) doneAction:@selector(doneAction:) shouldShowPlaceholder:_shouldShowTextFieldPlaceholder];
textField.inputAccessoryView.tag = kIQPreviousNextButtonToolbarTag; // (Bug ID: #78)
}
if ([textField.inputAccessoryView isKindOfClass:[IQToolbar class]] && textField.inputAccessoryView.tag == kIQPreviousNextButtonToolbarTag)
{
IQToolbar *toolbar = (IQToolbar*)[textField inputAccessoryView];
//Bar style according to keyboard appearance
if ([textField respondsToSelector:@selector(keyboardAppearance)])
{
switch ([(UITextField*)textField keyboardAppearance])
{
case UIKeyboardAppearanceAlert:
{
toolbar.barStyle = UIBarStyleBlack;
[toolbar setTintColor:[UIColor whiteColor]];
}
break;
default:
{
toolbar.barStyle = UIBarStyleDefault;
//Setting toolbar tintColor // (Enhancement ID: #30)
if (_shouldToolbarUsesTextFieldTintColor)
{
toolbar.tintColor = [textField tintColor];
}
else if (_toolbarTintColor)
{
toolbar.tintColor = _toolbarTintColor;
}
else
{
toolbar.tintColor = [UIColor blackColor];
}
}
break;
}
}
//If need to show placeholder
if (_shouldShowTextFieldPlaceholder && textField.shouldHideTitle == NO)
{
//Updating placeholder //(Bug ID: #148)
if ([textField respondsToSelector:@selector(placeholder)])
{
if (toolbar.title == nil || [toolbar.title isEqualToString:textField.placeholder] == NO)
[toolbar setTitle:textField.placeholder];
}
//If doesn't recognised 'placeholder' method, then setting it's title to nil //(Bug ID: #272)
else
[toolbar setTitle:nil];
//Setting toolbar title font. // (Enhancement ID: #30)
if (_placeholderFont && [_placeholderFont isKindOfClass:[UIFont class]])
[toolbar setTitleFont:_placeholderFont];
}
else
{
//Updating placeholder //(Bug ID: #272)
[toolbar setTitle:nil];
}
//In case of UITableView (Special), the next/previous buttons has to be refreshed everytime. (Bug ID: #56)
// If firstTextField, then previous should not be enabled.
if ([siblings objectAtIndex:0] == textField)
{
[textField setEnablePrevious:NO next:YES];
}
// If lastTextField then next should not be enaled.
else if ([siblings lastObject] == textField)
{
[textField setEnablePrevious:YES next:NO];
}
else
{
[textField setEnablePrevious:YES next:YES];
}
}
}
}
}
/** Remove any toolbar if it is IQToolbar. */
-(void)removeToolbarIfRequired // (Bug ID: #18)
{
// Getting all the sibling textFields.
NSArray *siblings = [self responderViews];
for (UITextField *textField in siblings)
{
UIView *toolbar = [textField inputAccessoryView];
// (Bug ID: #78)
//setInputAccessoryView: check (Bug ID: #307)
if ([textField respondsToSelector:@selector(setInputAccessoryView:)] && ([toolbar isKindOfClass:[IQToolbar class]] && (toolbar.tag == kIQDoneButtonToolbarTag || toolbar.tag == kIQPreviousNextButtonToolbarTag)))
{
textField.inputAccessoryView = nil;
}
}
}
#pragma mark previous/next/done functionality
/** previousAction. */
-(void)previousAction:(id)segmentedControl
{
//If user wants to play input Click sound. Then Play Input Click Sound.
if (_shouldPlayInputClicks)
{
[[UIDevice currentDevice] playInputClick];
}
if ([self canGoPrevious])
{
UIView *textFieldRetain = _textFieldView;
BOOL isAcceptAsFirstResponder = [self goPrevious];
if (isAcceptAsFirstResponder == YES && textFieldRetain.previousInvocation)
{
[textFieldRetain.previousInvocation invoke];
}
}
}
/** nextAction. */
-(void)nextAction:(id)segmentedControl
{
//If user wants to play input Click sound. Then Play Input Click Sound.
if (_shouldPlayInputClicks)
{
[[UIDevice currentDevice] playInputClick];
}
if ([self canGoNext])
{
UIView *textFieldRetain = _textFieldView;
BOOL isAcceptAsFirstResponder = [self goNext];
if (isAcceptAsFirstResponder == YES && textFieldRetain.nextInvocation)
{
[textFieldRetain.nextInvocation invoke];
}
}
}
/** doneAction. Resigning current textField. */
-(void)doneAction:(IQBarButtonItem*)barButton
{
//If user wants to play input Click sound. Then Play Input Click Sound.
if (_shouldPlayInputClicks)
{
[[UIDevice currentDevice] playInputClick];
}
UIView *textFieldRetain = _textFieldView;
BOOL isResignedFirstResponder = [self resignFirstResponder];
if (isResignedFirstResponder == YES && textFieldRetain.doneInvocation)
{
[textFieldRetain.doneInvocation invoke];
}
}
#pragma mark - Tracking untracking
/** Disable adjusting view in disabledClass */
-(void)disableInViewControllerClass:(Class)disabledClass
{
[self disableDistanceHandlingInViewControllerClass:disabledClass];
}
-(void)disableDistanceHandlingInViewControllerClass:(nonnull Class)disabledClass
{
[_disabledClasses addObject:disabledClass];
}
/** Re-enable adjusting textField in disabledClass */
-(void)removeDisableInViewControllerClass:(Class)disabledClass
{
[self removeDisableDistanceHandlingInViewControllerClass:disabledClass];
}
-(void)removeDisableDistanceHandlingInViewControllerClass:(nonnull Class)disabledClass
{
[_disabledClasses removeObject:disabledClass];
}
//Returns all disabled classes
-(NSSet*)disabledInViewControllerClasses
{
return [_disabledClasses copy];
}
/** Disable automatic toolbar creation in in toolbarDisabledClass */
-(void)disableToolbarInViewControllerClass:(Class)toolbarDisabledClass
{
[_disabledToolbarClasses addObject:toolbarDisabledClass];
}
/** Re-enable automatic toolbar creation in in toolbarDisabledClass */
-(void)removeDisableToolbarInViewControllerClass:(Class)toolbarDisabledClass
{
[_disabledToolbarClasses removeObject:toolbarDisabledClass];
}
//Returns all toolbar disabled classes
-(NSSet *)disabledToolbarInViewControllerClasses
{
return [_disabledToolbarClasses copy];
}
/** Consider provided customView class as superView of all inner textField for calculating next/previous button logic. */
-(void)considerToolbarPreviousNextInViewClass:(Class)toolbarPreviousNextConsideredClass
{
[_toolbarPreviousNextConsideredClass addObject:toolbarPreviousNextConsideredClass];
}
/** Remove Consideration for provided customView class as superView of all inner textField for calculating next/previous button logic. */
-(void)removeConsiderToolbarPreviousNextInViewClass:(Class)toolbarPreviousNextConsideredClass
{
[_toolbarPreviousNextConsideredClass removeObject:toolbarPreviousNextConsideredClass];
}
/**
Returns All toolbar considered classes
*/
-(NSSet* _Nonnull)consideredToolbarPreviousNextViewClasses
{
return [_toolbarPreviousNextConsideredClass copy];
}
@end
void _IQShowLog(NSString *logString)
{
#if IQKEYBOARDMANAGER_DEBUG
NSLog(@"IQKeyboardManager: %@",logString);
#endif
}