- Autocomplete text with @mention, #hashtag or any other prefix
- A self-sizing
UITextView
with an optional fixed height (can be replaced with any other view) - Image paste support
- Autocomplete attributed text highlighting
- Reactive components that respond to given events
- Top/Bottom/Left/Right
InputStackView
s that act as toolbars to place buttons -
RxSwift
/RxCocoa
Support - Drop in attachment view for file/photo management
- Plugin support for your own
InputPlugin
s - Compatible with all iPhones and iPads
- RTL Support
pod 'InputBarAccessoryView'
github "nathantannar4/InputBarAccessoryView"
iOS 9.0+ Swift 4.2+ XCode 9.0+
See the Example project to see how you can make the iMessage, Slack, Facebook and GitHawk input bars!
Add your app to the list of apps using this library and make a pull request.
- MessageKit (renamed to MessageInputBar)
- MessageViewController (Autocomplete Highlighting Algorithm)
iMessage style TypingIndicator for chat apps
- 4.2.0
- Added new API for overriding the main middle view, normally the
InputTextView
so it can be replaced with views such as a "Join" button",setMiddleContentView(_ view: UIView?, animated: Bool)
- Added new API for overriding the main middle view, normally the
- 4.1.2
- Add RxSwift/RxCocoa support through extensions and delegate proxies in
RxInputBarAccessoryView
, requiresRxSwift
andRxCocoa
- AddInputBarViewController
which contains anInputBarAccessoryView
as theinputAccessoryView
by default with a convenientisInputBarHidden: Bool
property to show/hide it - 4.1.1
- Add
frameInsets: HorizontalEdgePadding
property toInputBarAccessoryView
to inset the view to be compatible withUISplitViewController
or other custom containers where the view should not be the full width - 4.1.0
- Fix issue where setting long strings in
viewDidLoad
broke inital layout, Issue #41 - AdddeleteCompletionByParts: Bool
flag toAutocompleteManager
to allow for partial deletions of autocompletes rather than just the entire substring. - AddInputBarSendButton
to use as thesendButton
inInputBarAccessoryView
. This subclass ofInputBarButtonItem
has aUIActivityIndicatorView
to show a spinner when making HTTP requests
Find a bug? Open an issue!
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.
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)
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?
Nathan Tannar - https://nathantannar.me
Distributed under the MIT license. See LICENSE
for more information.