nathantannar4/inputbaraccessoryview
- [x] Autocomplete text with @mention, #hashtag or any other prefix
Latest Releases
7.0.0 - Breaking change: Drop iOS 13 support - Breaking change: Move to Swift 6, fully support Swift concurrency
6.5.0 - Bump Swift version to 5.10 - Perform layout changes on main thread
6.4.0 - Fixed bottom gap calculations for embedded controllers
6.3.0 - Fixed the gap between keyboard and input bar when used on pagesheet/formsheet on iPad - Fixed crash after adding image attachment
6.2.0 - Remove canBecomeFirstResponder on InputTextView to fix UITextViewDelegate methods not being called
6.1.1 - Fixed warning for Xcode 14
6.1.0 - #230 Added additionalInputViewBottomConstraintConstant to KeyboardManager as a way for providing additional bottom constraint constant offset for inputAccessoryView. Example implementation can be found in AdditionalBottomSpaceExampleViewController
6.0.0 - Breaking change: Drop iOS 12 support - Breaking change: Drop CocoaPods support & RxSwift extension (it was available only via CocoaPods) - KeyboardManager will not update position of inputAccessoryView from interactive dismiss panGesture when the keyboard is floating - Update docs
See CHANGELOG for more details and older releases.
Find a bug? Open an issue!
Layout
The layout of the InputBarAccessoryView is made of of 4 InputStackView's and an InputTextView. The padding of the subviews can be easily adjusted by changing the padding and textViewPadding properties. The constraints will automatically be updated.
<img src="https://raw.githubusercontent.com/nathantannar4/InputBarAccessoryView/master/Screenshots/Layout.png">
It is important to note that each of the InputStackView 's to the left and right of the InputTextView are anchored by a width constraint. This way the InputTextView will always fill the space inbetween in addition to providing methods that can easily be called to hide all buttons to the right or left of the InputTextView by setting the width constraint constant to 0. The bottom and top stack views are not height constraint and rely on their intrinsicContentSize
func setLeftStackViewWidthConstant(to newValue: CGFloat, animated: Bool)
func setRightStackViewWidthConstant(to newValue: CGFloat, animated: Bool)Reactive Hooks
Each InputBarButtonItem has properties that can hold actions that will be executed during various hooks such as the button being touched, the UITextView text changing and more! Thanks to these easy hooks with a few lines of code the items can be easily resized and animated similar to that of the Facebook messenger app.
// MARK: - Hooks
public typealias InputBarButtonItemAction = ((InputBarButtonItem) -> Void)
private var onTouchUpInsideAction: InputBarButtonItemAction?
private var onKeyboardEditingBeginsAction: InputBarButtonItemAction?
private var onKeyboardEditingEndsAction: InputBarButtonItemAction?
private var onKeyboardSwipeGestureAction: ((InputBarButtonItem, UISwipeGestureRecognizer) -> Void)?
private var onTextViewDidChangeAction: ((InputBarButtonItem, InputTextView) -> Void)?
private var onSelectedAction: InputBarButtonItemAction?
private var onDeselectedAction: InputBarButtonItemAction?
private var onEnabledAction: InputBarButtonItemAction?
private var onDisabledAction: InputBarButtonItemAction?License
Distributed under the MIT license. See `LICENSE` for more information.
Package Metadata
Repository: nathantannar4/inputbaraccessoryview
Default branch: master
README: README.md