123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- //
- // IQUIView+Hierarchy.swift
- // https://github.com/hackiftekhar/IQKeyboardManager
- // Copyright (c) 2013-16 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 UIKit
- /**
- UIView hierarchy category.
- */
- @objc public extension UIView {
- ///----------------------
- // MARK: viewControllers
- ///----------------------
- /**
- Returns the UIViewController object that manages the receiver.
- */
- func viewContainingController() -> UIViewController? {
- var nextResponder: UIResponder? = self
- repeat {
- nextResponder = nextResponder?.next
- if let viewController = nextResponder as? UIViewController {
- return viewController
- }
- } while nextResponder != nil
- return nil
- }
- /**
- Returns the topMost UIViewController object in hierarchy.
- */
- func topMostController() -> UIViewController? {
- var controllersHierarchy = [UIViewController]()
- if var topController = window?.rootViewController {
- controllersHierarchy.append(topController)
- while let presented = topController.presentedViewController {
- topController = presented
- controllersHierarchy.append(presented)
- }
- var matchController: UIResponder? = viewContainingController()
- while let mController = matchController as? UIViewController, controllersHierarchy.contains(mController) == false {
- repeat {
- matchController = matchController?.next
- } while matchController != nil && matchController is UIViewController == false
- }
- return matchController as? UIViewController
- } else {
- return viewContainingController()
- }
- }
- /**
- Returns the UIViewController object that is actually the parent of this object. Most of the time it's the viewController object which actually contains it, but result may be different if it's viewController is added as childViewController of another viewController.
- */
- func parentContainerViewController() -> UIViewController? {
- var matchController = viewContainingController()
- var parentContainerViewController: UIViewController?
- if var navController = matchController?.navigationController {
- while let parentNav = navController.navigationController {
- navController = parentNav
- }
- var parentController: UIViewController = navController
- while let parent = parentController.parent,
- (parent.isKind(of: UINavigationController.self) == false &&
- parent.isKind(of: UITabBarController.self) == false &&
- parent.isKind(of: UISplitViewController.self) == false) {
- parentController = parent
- }
- if navController == parentController {
- parentContainerViewController = navController.topViewController
- } else {
- parentContainerViewController = parentController
- }
- } else if let tabController = matchController?.tabBarController {
- if let navController = tabController.selectedViewController as? UINavigationController {
- parentContainerViewController = navController.topViewController
- } else {
- parentContainerViewController = tabController.selectedViewController
- }
- } else {
- while let parentController = matchController?.parent,
- (parentController.isKind(of: UINavigationController.self) == false &&
- parentController.isKind(of: UITabBarController.self) == false &&
- parentController.isKind(of: UISplitViewController.self) == false) {
- matchController = parentController
- }
- parentContainerViewController = matchController
- }
- let finalController = parentContainerViewController?.parentIQContainerViewController() ?? parentContainerViewController
- return finalController
- }
- ///-----------------------------------
- // MARK: Superviews/Subviews/Siglings
- ///-----------------------------------
- /**
- Returns the superView of provided class type.
-
- @param classType class type of the object which is to be search in above hierarchy and return
-
- @param belowView view object in upper hierarchy where method should stop searching and return nil
- */
- func superviewOfClassType(_ classType: UIView.Type, belowView: UIView? = nil) -> UIView? {
- var superView = superview
- while let unwrappedSuperView = superView {
- if unwrappedSuperView.isKind(of: classType) {
- //If it's UIScrollView, then validating for special cases
- if unwrappedSuperView.isKind(of: UIScrollView.self) {
- let classNameString = NSStringFromClass(type(of: unwrappedSuperView.self))
- // If it's not UITableViewWrapperView class, this is internal class which is actually manage in UITableview. The speciality of this class is that it's superview is UITableView.
- // If it's not UITableViewCellScrollView class, this is internal class which is actually manage in UITableviewCell. The speciality of this class is that it's superview is UITableViewCell.
- //If it's not _UIQueuingScrollView class, actually we validate for _ prefix which usually used by Apple internal classes
- if unwrappedSuperView.superview?.isKind(of: UITableView.self) == false &&
- unwrappedSuperView.superview?.isKind(of: UITableViewCell.self) == false &&
- classNameString.hasPrefix("_") == false {
- return superView
- }
- } else {
- return superView
- }
- } else if unwrappedSuperView == belowView {
- return nil
- }
- superView = unwrappedSuperView.superview
- }
- return nil
- }
- /**
- Returns all siblings of the receiver which canBecomeFirstResponder.
- */
- internal func responderSiblings() -> [UIView] {
- //Array of (UITextField/UITextView's).
- var tempTextFields = [UIView]()
- // Getting all siblings
- if let siblings = superview?.subviews {
- for textField in siblings {
- if (textField == self || textField.ignoreSwitchingByNextPrevious == false) && textField.IQcanBecomeFirstResponder() == true {
- tempTextFields.append(textField)
- }
- }
- }
- return tempTextFields
- }
- /**
- Returns all deep subViews of the receiver which canBecomeFirstResponder.
- */
- internal func deepResponderViews() -> [UIView] {
- //Array of (UITextField/UITextView's).
- var textfields = [UIView]()
- for textField in subviews {
- if (textField == self || textField.ignoreSwitchingByNextPrevious == false) && textField.IQcanBecomeFirstResponder() == true {
- textfields.append(textField)
- }
- //Sometimes there are hidden or disabled views and textField inside them still recorded, so we added some more validations here (Bug ID: #458)
- //Uncommented else (Bug ID: #625)
- if textField.subviews.count != 0 && isUserInteractionEnabled == true && isHidden == false && alpha != 0.0 {
- for deepView in textField.deepResponderViews() {
- textfields.append(deepView)
- }
- }
- }
- //subviews are returning in opposite order. Sorting according the frames 'y'.
- return textfields.sorted(by: { (view1: UIView, view2: UIView) -> Bool in
- let frame1 = view1.convert(view1.bounds, to: self)
- let frame2 = view2.convert(view2.bounds, to: self)
- if frame1.minY != frame2.minY {
- return frame1.minY < frame2.minY
- } else {
- return frame1.minX < frame2.minX
- }
- })
- }
- private func IQcanBecomeFirstResponder() -> Bool {
- var IQcanBecomeFirstResponder = false
- // Setting toolbar to keyboard.
- if let textField = self as? UITextField {
- IQcanBecomeFirstResponder = textField.isEnabled
- } else if let textView = self as? UITextView {
- IQcanBecomeFirstResponder = textView.isEditable
- }
- if IQcanBecomeFirstResponder == true {
- IQcanBecomeFirstResponder = isUserInteractionEnabled == true && isHidden == false && alpha != 0.0 && isAlertViewTextField() == false && textFieldSearchBar() == nil
- }
- return IQcanBecomeFirstResponder
- }
- ///-------------------------
- // MARK: Special TextFields
- ///-------------------------
- /**
- Returns searchBar if receiver object is UISearchBarTextField, otherwise return nil.
- */
- internal func textFieldSearchBar() -> UISearchBar? {
- var responder: UIResponder? = self.next
- while let bar = responder {
- if let searchBar = bar as? UISearchBar {
- return searchBar
- } else if bar is UIViewController {
- break
- }
- responder = bar.next
- }
- return nil
- }
- /**
- Returns YES if the receiver object is UIAlertSheetTextField, otherwise return NO.
- */
- internal func isAlertViewTextField() -> Bool {
- var alertViewController: UIResponder? = viewContainingController()
- var isAlertViewTextField = false
- while let controller = alertViewController, isAlertViewTextField == false {
- if controller.isKind(of: UIAlertController.self) {
- isAlertViewTextField = true
- break
- }
- alertViewController = controller.next
- }
- return isAlertViewTextField
- }
- private func depth() -> Int {
- var depth: Int = 0
- if let superView = superview {
- depth = superView.depth()+1
- }
- return depth
- }
- }
- @objc public extension UIViewController {
- func parentIQContainerViewController() -> UIViewController? {
- return self
- }
- }
- extension NSObject {
- internal func _IQDescription() -> String {
- return "<\(self) \(Unmanaged.passUnretained(self).toOpaque())>"
- }
- }
|