inputaccessoryview Questions
16
Solved
I have a messaging app that has the typical UI design of a text field at the bottom of a full screen table view. I am setting that text field to be the view controller's inputAccessoryView and call...
Everyday asked 18/9, 2017 at 15:23
4
Solved
I have an inputAccessoryView for a chat app that always remains visible and docked at the bottom of the screen for text input similar to most messaging apps.
When I present an alertController wit...
Brickyard asked 29/10, 2017 at 2:17
1
Simple input accessory view on UIViewController
I want to have an input accessory view like you see in iMessage. The bar is always visible at the bottom of the screen. When the TextField gets focus...
Hellkite asked 20/8, 2021 at 23:52
8
I have implemented Custom input accessory view it was working fine till iOS 10.3.1. But it's not visible in iOS 11 beta.
Have anyone experience this issue?
Pardon asked 15/6, 2017 at 7:0
3
Solved
I was getting a lot of layout constraint errors so I created a new project and simply have a UIToolbar and a UITextField to try and troubleshoot the problem. Even with a clean project, I still get ...
Sheikh asked 12/1, 2020 at 0:47
2
Solved
I have spent several days on this with no solution in sight.
I have an inputAccessoryView which consists of a UIView containing a textView and two buttons. The behaviour of the inputAccessoryView...
Olein asked 5/8, 2015 at 2:37
6
Solved
When I change the height of inputAccessoryView in iOS 8, the inputAccessoryView not go to the right origin, but covers the keyboard.
Here are some code snippets:
in table view controller
- (UI...
Bellow asked 11/12, 2014 at 9:48
2
Solved
I'm using a WKWebView with a content-editable div as the core of a rich-text editor, and would like to modify the top toolbar above the keyboard—the one that contains the autocorrect suggestions an...
Glynis asked 25/2, 2018 at 20:28
3
Solved
Basically I am trying to create a resizing UITextView within a inputAccessoryView property.
I have a viewController with the method canBecomeFirstResponder returning true and a view I instantiate ...
Melisent asked 22/5, 2015 at 16:40
1
Solved
In order to display a text field right above the user's keyboard, I overrode inputAccessoryView in my custom view controller.
I also made sure that the view controller may become the first respond...
Teryl asked 17/6, 2018 at 17:55
1
I'm trying to figure out the best way to have a custom inputAccessoryView rest on top of a tab bar. Currently, I have an inputAccessoryView that rests at the very bottom of the screen, but it cover...
Recessive asked 7/12, 2015 at 15:53
0
I am using an inputAccessoryView which is loaded from a nib using the following UIView subclass:
class CustomInputAccessoryView: UIView {
@IBOutlet var containerView: UIView!
@IBOutlet var cont...
Mensural asked 29/5, 2018 at 9:38
1
Solved
I implemented an own inputAccessoryView within a VC that gets pushed by a UINavigationController.
This is how the VC looks like: Notice the inputAccessoryView at the bottom (the white bar with the...
Chazan asked 6/3, 2018 at 12:46
0
I have a keyboard with a custom accessory view. I can get its height by registering for keyboardWillShowNotification notification:
NotificationCenter.default.addObserver(self, selector: #selector(...
Thay asked 16/2, 2018 at 15:44
1
I am trying to add a UIView with "Done" button as an input accessory view to the text field.
let view = UIView()
let doneButton = UIButton(type: .Custom)
doneButton.setTitle("Done", forState: ....
Widescreen asked 10/4, 2016 at 16:45
2
Solved
Here is my code:
var messageView : UITextView = {
var textView = UITextView()
textView.text = " Add your message here"
textView.textColor = UIColor.lightGrayColor()
textView.translatesAutores...
Organization asked 16/5, 2017 at 18:22
2
Solved
I am trying to imitate Apple's iMessage application in terms of the message input toolbar. Apple has a UIToolbar which is the input accessory view of a UITextView it contains, and also the inputAcc...
Octavus asked 11/7, 2014 at 12:7
1
Within my swift app, I am trying to hide the inputAccessoryView that shows when a user taps a textfield inside of a webview.
Here is the code attempting to do that:
func keyboardWillShow(notific...
Teth asked 18/10, 2016 at 21:25
5
I created a toolbar above the picker with two buttons and worked on ios7, when i run in ios8 crash:
Terminating app two to uncaught exception
'UIViewControllerHierarchyInconsistency', reason: '...
Chalfant asked 10/9, 2014 at 9:33
0
I use input accessory view for my viewController to dock the view at the bottom of the screen and stick with the keyboard.
All works fine, except that when an alert is shown, the input accessory v...
Zannini asked 4/1, 2016 at 15:8
1
Solved
Here is my code:
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let keyBoardToolBar = UIToolbar(frame: CGRectMake(0,...
Traitor asked 15/12, 2015 at 12:59
9
Long time lurker - first time poster!
I am having an issue while recreating a bar with a UITextView like WhatsApp does it.
I am using a custom UIView subclass, and lazily instantiating it on:
...
Highkeyed asked 12/9, 2014 at 21:18
2
Solved
I've built a growing UITextView attached to the keyboard, similar to the stock Messages app, by loading a .xib into the keyboard's inputAccessoryView as such:
self.keyboardAccessoryView = [[[NSBun...
Saxe asked 13/4, 2014 at 14:39
1
Does anyone know how to implement composerBar and keyboard appearing like in Facebook messenger?
After scrolling tableView up, a keyboard appears from bottom smoothly and without any jumps .
In my...
Salas asked 29/6, 2015 at 17:51
2
Solved
I want to make behavior like messaging app. I have been browsing Stack Overflow for solutions for this, and indeed there are plenty:
Leaving inputAccessoryView visible after keyboard is dismissed
...
Abramabramo asked 13/2, 2015 at 9:34
1 Next >
© 2022 - 2024 — McMap. All rights reserved.