hackiftekhar/IQKeyboardManager

View on GitHub
IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift

Summary

Maintainability
F
3 days
Test Coverage

Function addPreviousNextRightOnKeyboardWithTarget has 7 arguments (exceeds 4 allowed). Consider refactoring.
Open

    func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?,
                                                  rightButtonImage: UIImage,
                                                  previousAction: Selector,
                                                  nextAction: Selector,
                                                  rightButtonAction: Selector,

    Function addRightLeftOnKeyboardWithTarget has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?,
                                              leftButtonTitle: String,
                                              rightButtonTitle: String,
                                              leftButtonAction: Selector,
                                              rightButtonAction: Selector,

      Function addRightLeftOnKeyboardWithTarget has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?,
                                                leftButtonImage: UIImage,
                                                rightButtonImage: UIImage,
                                                leftButtonAction: Selector,
                                                rightButtonAction: Selector,

        Function addPreviousNextRightOnKeyboardWithTarget has 7 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?,
                                                          rightButtonTitle: String,
                                                          previousAction: Selector,
                                                          nextAction: Selector,
                                                          rightButtonAction: Selector,

          Function addPreviousNextRightOnKeyboardWithTarget has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?,
                                                            rightButtonImage: UIImage,
                                                            previousAction: Selector,
                                                            nextAction: Selector,
                                                            rightButtonAction: Selector,

            Function addRightLeftOnKeyboardWithTarget has 7 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?,
                                                      leftButtonTitle: String,
                                                      rightButtonTitle: String,
                                                      leftButtonAction: Selector,
                                                      rightButtonAction: Selector,

              Function addPreviousNextRightOnKeyboardWithTarget has 7 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?,
                                                                rightButtonTitle: String,
                                                                previousAction: Selector,
                                                                nextAction: Selector,
                                                                rightButtonAction: Selector,

                Function addRightLeftOnKeyboardWithTarget has 7 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?,
                                                          leftButtonImage: UIImage,
                                                          rightButtonImage: UIImage,
                                                          leftButtonAction: Selector,
                                                          rightButtonAction: Selector,

                  Function addPreviousNextDone has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      func addPreviousNextDone(_ target: AnyObject?,
                                               previousAction: Selector,
                                               nextAction: Selector,
                                               doneAction: Selector,
                                               shouldShowPlaceholder: Bool = false,

                    Function addKeyboardToolbarWithTarget has 6 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        func addKeyboardToolbarWithTarget(target: AnyObject?,
                                                          titleText: String?,
                                                          titleAccessibilityLabel: String? = nil,
                                                          rightBarButtonConfiguration: IQBarButtonItemConfiguration?,
                                                          previousBarButtonConfiguration: IQBarButtonItemConfiguration? = nil,

                      Function addPreviousNextDoneOnKeyboardWithTarget has 6 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          func addPreviousNextDoneOnKeyboardWithTarget(_ target: AnyObject?,
                                                                       previousAction: Selector,
                                                                       nextAction: Selector,
                                                                       doneAction: Selector,
                                                                       titleText: String?,

                        Function addRightButtonOnKeyboardWithImage has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            func addRightButtonOnKeyboardWithImage(_ image: UIImage,
                                                                   target: AnyObject?,
                                                                   action: Selector,
                                                                   titleText: String?,
                                                                   titleAccessibilityLabel: String? = nil) {

                          Function addRightButtonOnKeyboardWithText has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              func addRightButtonOnKeyboardWithText(_ text: String,
                                                                    target: AnyObject?,
                                                                    action: Selector,
                                                                    titleText: String?,
                                                                    titleAccessibilityLabel: String? = nil) {

                            Function addRightButtonOnKeyboardWithImage has 5 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                func addRightButtonOnKeyboardWithImage(_ image: UIImage,
                                                                       target: AnyObject?,
                                                                       action: Selector,
                                                                       shouldShowPlaceholder: Bool = false,
                                                                       titleAccessibilityLabel: String? = nil) {

                              Function addCancelDoneOnKeyboardWithTarget has 5 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                                  func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?,
                                                                         cancelAction: Selector,
                                                                         doneAction: Selector,
                                                                         shouldShowPlaceholder: Bool = false,
                                                                         titleAccessibilityLabel: String? = nil) {

                                Function addCancelDoneOnKeyboardWithTarget has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                Open

                                    func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?,
                                                                           cancelAction: Selector,
                                                                           doneAction: Selector,
                                                                           titleText: String?,
                                                                           titleAccessibilityLabel: String? = nil) {

                                  Function addRightButtonOnKeyboardWithText has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                  Open

                                      func addRightButtonOnKeyboardWithText(_ text: String,
                                                                            target: AnyObject?,
                                                                            action: Selector,
                                                                            shouldShowPlaceholder: Bool = false,
                                                                            titleAccessibilityLabel: String? = nil) {

                                    Similar blocks of code found in 4 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addPreviousNextRight(target:previousConfiguration:nextConfiguration:rightConfiguration:showPlaceholder:titleAccessibilityLabel:)")
                                        func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?,
                                                                                      rightButtonImage: UIImage,
                                                                                      previousAction: Selector,
                                                                                      nextAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 120..128
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 130..138
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 196..204

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 66.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 4 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:title:titleAccessibilityLabel:)")
                                        func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?,
                                                                              leftButtonImage: UIImage,
                                                                              rightButtonImage: UIImage,
                                                                              leftButtonAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 148..156
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 206..214
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 216..224

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 66.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 4 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:title:titleAccessibilityLabel:)")
                                        func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?,
                                                                              leftButtonTitle: String,
                                                                              rightButtonTitle: String,
                                                                              leftButtonAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 158..166
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 206..214
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 216..224

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 66.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 4 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addPreviousNextRight(target:previousConfiguration:nextConfiguration:rightConfiguration:showPlaceholder:titleAccessibilityLabel:)")
                                        func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?,
                                                                                      rightButtonTitle: String,
                                                                                      previousAction: Selector,
                                                                                      nextAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 120..128
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 130..138
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 186..194

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 66.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 4 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addPreviousNextRight(target:previousConfiguration:nextConfiguration:rightConfiguration:title:titleAccessibilityLabel:)")
                                        func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?,
                                                                                      rightButtonTitle: String,
                                                                                      previousAction: Selector,
                                                                                      nextAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 148..156
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 158..166
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 206..214

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 66.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 4 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:showPlaceholder:titleAccessibilityLabel:)")
                                        func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?,
                                                                              leftButtonTitle: String,
                                                                              rightButtonTitle: String,
                                                                              leftButtonAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 130..138
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 186..194
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 196..204

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 66.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 4 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:showPlaceholder:titleAccessibilityLabel:)")
                                        func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?,
                                                                              leftButtonImage: UIImage,
                                                                              rightButtonImage: UIImage,
                                                                              leftButtonAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 120..128
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 186..194
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 196..204

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 66.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 4 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addPreviousNextRight(target:previousConfiguration:nextConfiguration:rightConfiguration:title:titleAccessibilityLabel:)")
                                        func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?,
                                                                                      rightButtonImage: UIImage,
                                                                                      previousAction: Selector,
                                                                                      nextAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 148..156
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 158..166
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 216..224

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 66.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addPreviousNextDone(target:previousAction:nextAction:doneAction:title:titleAccessibilityLabel:)")
                                        func addPreviousNextDoneOnKeyboardWithTarget(_ target: AnyObject?,
                                                                                     previousAction: Selector,
                                                                                     nextAction: Selector,
                                                                                     doneAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift on lines 306..318

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 53.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addPreviousNextDone(target:previousAction:nextAction:doneAction:showPlaceholder:titleAccessibilityLabel:)")
                                        func addPreviousNextDone(_ target: AnyObject?,
                                                                 previousAction: Selector,
                                                                 nextAction: Selector,
                                                                 doneAction: Selector,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift on lines 298..304

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 53.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightButton(target:configuration:title:titleAccessibilityLabel:)")
                                        func addRightButtonOnKeyboardWithText(_ text: String,
                                                                              target: AnyObject?,
                                                                              action: Selector,
                                                                              titleText: String?,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 88..94

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 52.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightButton(target:configuration:showPlaceholder:titleAccessibilityLabel:)")
                                        func addRightButtonOnKeyboardWithText(_ text: String,
                                                                              target: AnyObject?,
                                                                              action: Selector,
                                                                              shouldShowPlaceholder: Bool = false,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 80..86

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 52.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightButton(target:configuration:showPlaceholder:titleAccessibilityLabel:)")
                                        func addRightButtonOnKeyboardWithImage(_ image: UIImage,
                                                                               target: AnyObject?,
                                                                               action: Selector,
                                                                               shouldShowPlaceholder: Bool = false,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 96..102

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 52.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightButton(target:configuration:title:titleAccessibilityLabel:)")
                                        func addRightButtonOnKeyboardWithImage(_ image: UIImage,
                                                                               target: AnyObject?,
                                                                               action: Selector,
                                                                               titleText: String?,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbarDeprecated.swift on lines 104..110

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 52.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:showPlaceholder:titleAccessibilityLabel:)")
                                        func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?,
                                                                               cancelAction: Selector,
                                                                               doneAction: Selector,
                                                                               shouldShowPlaceholder: Bool = false,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift on lines 254..261

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 46.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:title:titleAccessibilityLabel:)")
                                        func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?,
                                                                               cancelAction: Selector,
                                                                               doneAction: Selector,
                                                                               titleText: String?,
                                    IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift on lines 263..269

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 46.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    There are no issues that match your filters.

                                    Category
                                    Status