I am developing a chat app which has UITableView
and a UIView
containing a UITextField
and a UIButton
in it. I am using the f
You can use an accessoryView, which will attach itself to the top of the keyboard. Alternatively, if you want more power over customization, you can use notifications as explained by @pankaj_wadwha to fetch the frame information. Bonus: you can also get the animation information (such as speed) so your view moves alongside the keyboard perfectly.