完善任务流程、键盘适配与页面交互
This commit is contained in:
134
Pods/IQKeyboardToolbarManager/README.md
generated
Normal file
134
Pods/IQKeyboardToolbarManager/README.md
generated
Normal file
@ -0,0 +1,134 @@
|
||||
# IQKeyboardToolbarManager
|
||||
|
||||
[](https://travis-ci.org/hackiftekhar/IQKeyboardToolbarManager)
|
||||
[](https://cocoapods.org/pods/IQKeyboardToolbarManager)
|
||||
[](https://cocoapods.org/pods/IQKeyboardToolbarManager)
|
||||
[](https://cocoapods.org/pods/IQKeyboardToolbarManager)
|
||||
|
||||

|
||||
|
||||
## Example
|
||||
|
||||
To run the example project, clone the repo, and run `pod install` from the Example directory first.
|
||||
|
||||
## Requirements
|
||||
|
||||
## Installation
|
||||
|
||||
### Swift Package Manager (Recommended)
|
||||
|
||||
IQKeyboardToolbarManager is available through [Swift Package Manager](https://swift.org/package-manager/).
|
||||
|
||||
**Requirements:** iOS 13.0+, Swift 5.7+
|
||||
|
||||
#### Using Xcode:
|
||||
1. In Xcode, go to `File` → `Add Package Dependencies...`
|
||||
2. Enter the repository URL: `https://github.com/hackiftekhar/IQKeyboardToolbarManager`
|
||||
3. Select the version rule (e.g., "Up to Next Major Version")
|
||||
4. Click `Add Package`
|
||||
5. Select the `IQKeyboardToolbarManager` library and click `Add Package`
|
||||
|
||||
#### Using Package.swift:
|
||||
Add the following dependency to your `Package.swift` file:
|
||||
|
||||
```swift
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/hackiftekhar/IQKeyboardToolbarManager", from: "1.1.3")
|
||||
]
|
||||
```
|
||||
|
||||
Then add `IQKeyboardToolbarManager` to your target dependencies:
|
||||
|
||||
```swift
|
||||
.target(
|
||||
name: "YourTarget",
|
||||
dependencies: ["IQKeyboardToolbarManager"]
|
||||
)
|
||||
```
|
||||
|
||||
### CocoaPods
|
||||
|
||||
IQKeyboardToolbarManager is also available through [CocoaPods](https://cocoapods.org). To install
|
||||
it, simply add the following line to your Podfile:
|
||||
|
||||
```ruby
|
||||
pod 'IQKeyboardToolbarManager'
|
||||
```
|
||||
|
||||
### Carthage
|
||||
|
||||
Add the following line to your `Cartfile`:
|
||||
|
||||
```
|
||||
github "hackiftekhar/IQKeyboardToolbarManager"
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
After adding IQKeyboardToolbarManager to your project, import it and enable toolbar handling in AppDelegate:
|
||||
|
||||
```swift
|
||||
import UIKit
|
||||
import IQKeyboardToolbarManager
|
||||
|
||||
@UIApplicationMain
|
||||
class AppDelegate: UIResponder, UIApplicationDelegate {
|
||||
|
||||
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
||||
IQKeyboardToolbarManager.shared.isEnabled = true
|
||||
return true
|
||||
}
|
||||
```
|
||||
|
||||
Cuistomize Behavior
|
||||
```swift
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.useTextInputViewTintColor = true
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.tintColor = UIColor.systemGreen
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.barTintColor = UIColor.systemYellow
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.previousNextDisplayMode = .alwaysShow
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.manageBehavior = .byPosition
|
||||
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.previousBarButtonConfiguration = ... // BarButton configuration to change title, image or system image etc
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.nextBarButtonConfiguration = ... // BarButton configuration to change title, image or system image etc
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.doneBarButtonConfiguration = ... // BarButton configuration to change title, image or system image etc
|
||||
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.showPlaceholder = false
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.font = UIFont.italicSystemFont(ofSize: 14)
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.color = UIColor.systemPurple
|
||||
IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.buttonColor = UIColor.systemBrown // This is used only if placeholder is an action button
|
||||
|
||||
IQKeyboardToolbarManager.shared.playInputClicks = false
|
||||
|
||||
IQKeyboardToolbarManager.shared.disabledToolbarClasses.append(ChatViewController.self)
|
||||
IQKeyboardToolbarManager.shared.enabledToolbarClasses.append(LoginViewController.self)
|
||||
IQKeyboardToolbarManager.shared.deepResponderAllowedContainerClasses.append(UIStackView.self)
|
||||
```
|
||||
|
||||
Useful functions and variables
|
||||
```swift
|
||||
if IQKeyboardToolbarManager.shared.canGoPrevious {
|
||||
...
|
||||
}
|
||||
|
||||
if IQKeyboardToolbarManager.shared.canGoNext {
|
||||
...
|
||||
}
|
||||
|
||||
IQKeyboardToolbarManager.shared.goPrevious()
|
||||
IQKeyboardToolbarManager.shared.goNext()
|
||||
|
||||
IQKeyboardToolbarManager.shared.reloadInputViews() // If some textInputView hierarchy are changed on the fly then use this to reload button states
|
||||
```
|
||||
|
||||
Useful functions and variables for TextInputView
|
||||
```swift
|
||||
textField.iq.ignoreSwitchingByNextPrevious = false
|
||||
```
|
||||
|
||||
## Author
|
||||
|
||||
Iftekhar Qurashi hack.iftekhar@gmail.com
|
||||
|
||||
## License
|
||||
|
||||
IQKeyboardToolbarManager is available under the MIT license. See the LICENSE file for more info.
|
||||
Reference in New Issue
Block a user