Can I have UIView shown at bottom of the screen and keyboard presented on top of it when needed?How can I make a UITextField move up when the keyboard is present - on starting to edit?iPad keyboard will not dismiss if modal ViewController presentation style is UIModalPresentationFormSheetPresent UIViewController modally within a UIViewController that does not cover full screenInputAccessoryView docked at bottomPresenting UIPopoverController without dismissing the keyboardHow to have a UIView of a UIViewController that will be presented modally always be present at the bottom of the screen?Why does Pages get UIToolBar on top?How to move UIView that contain in UIViewController when keyboard appear or dismiss?swift how to dock inputAccessoryView above UIToolbar (not to the bottom)inputAccessoryView animating down when alertController (actionSheet) presented
setcounter is not affecting numbering
why neutral does not shock. how can a neutral be neutral in ac current?
BIP-23 criticism: Is bitcoin PoW actually sha256+merkleGeneration? Or have I misunderstood coinbase/append?
Animating the result of numerical integration
Brute-force the switchboard
Polynomials with natural coefficients arising from exponentiation and sums
Time war story - soldier name lengthens as he travels further from the battle front
Why should fork() have been designed to return a file descriptor?
Do pedestrians imitate automotive traffic?
A bicolour masyu
Improving an O(N^2) function (all entities iterating over all other entities)
Infinite points on circle
How much did all the space agencies spent on rockets launching and space exploration? What are the benefits for me and you?
What does a Nintendo Game Boy do when turned on without a game cartridge inserted?
Rule of thumb to choose right mix of Rodinal developer?
Linux ext4 restore file and directory access rights after bad backup/restore
Difference between string += s1 and string=string +s1
Applying for jobs when I have an obvious scar
Book in which the "mountain" in the distance was a hole in the flat world
Does the Bracer of Flying Daggers really let a thief make 4 attacks per round?
Host telling me to cancel my booking in exchange for a discount?
Nilpotent elements of Lie algebra and unipotent groups
What does Windows' "Tuning up Application Start" do?
Do I have to mention my main characters age?
Can I have UIView shown at bottom of the screen and keyboard presented on top of it when needed?
How can I make a UITextField move up when the keyboard is present - on starting to edit?iPad keyboard will not dismiss if modal ViewController presentation style is UIModalPresentationFormSheetPresent UIViewController modally within a UIViewController that does not cover full screenInputAccessoryView docked at bottomPresenting UIPopoverController without dismissing the keyboardHow to have a UIView of a UIViewController that will be presented modally always be present at the bottom of the screen?Why does Pages get UIToolBar on top?How to move UIView that contain in UIViewController when keyboard appear or dismiss?swift how to dock inputAccessoryView above UIToolbar (not to the bottom)inputAccessoryView animating down when alertController (actionSheet) presented
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I would like to have either custom UIView
or UIToolbar
or inputAccessoryView
always visible at the bottom of the screen and not being covered by keyboard when one is presented.
Also keyboard should be visible, meaning it should be presented on top of that view and dismissed accordingly.
It would be nice to have that view as part of the UIViewController, but if it can be part of keyboard it is also acceptable as I have an idea how to achieve the visual impression of it being a part of UIViewController and always visible.
I've run into answers explaining how to add custom toolbar docked at the bottom and shown on top of keyboard once presented.
I've also run into posts explaining how to create a custom keyboard.
There are also some stating keyboard can't be positioned otherwise than docked at the bottom.
I understand if Apple is forcing consistency, but having that view always visible would keep consistency across my app. Therefore, if the final answer is it's not possible, I would appreciate firm explanation or link to apple's mention of this issue, cause I wasn't able to find one so far.
Thanks a lot!
ios swift
add a comment |
I would like to have either custom UIView
or UIToolbar
or inputAccessoryView
always visible at the bottom of the screen and not being covered by keyboard when one is presented.
Also keyboard should be visible, meaning it should be presented on top of that view and dismissed accordingly.
It would be nice to have that view as part of the UIViewController, but if it can be part of keyboard it is also acceptable as I have an idea how to achieve the visual impression of it being a part of UIViewController and always visible.
I've run into answers explaining how to add custom toolbar docked at the bottom and shown on top of keyboard once presented.
I've also run into posts explaining how to create a custom keyboard.
There are also some stating keyboard can't be positioned otherwise than docked at the bottom.
I understand if Apple is forcing consistency, but having that view always visible would keep consistency across my app. Therefore, if the final answer is it's not possible, I would appreciate firm explanation or link to apple's mention of this issue, cause I wasn't able to find one so far.
Thanks a lot!
ios swift
if on top of it is acceptable, just change the constraints or place of origin of the toolbar to be on top of the keyboard when the keyboard is visible?
– PaFi
Mar 26 at 12:26
Unfortunately not, as I mentioned in question I'm aware of such solution but it doesn't satisfy my needs. I would really like to have it at bottom if it is possible in any way (including writing my own keyboard extension from scratch). Thanks anyway!
– doommons
Mar 26 at 12:29
@doommons - It's unlikely you'll find a way to reposition the keyboard. If the other options you've looked at are not satisfactory, you'll probably need to create your own custom keyboard - which you could then display in any manner you wish.
– DonMag
Mar 26 at 12:48
You can't do that. but if you want to do something like that you have to implement with your own keyboard extension with your custom UI
– Jatin Patel
Mar 26 at 12:55
Hi.. If you have any image to display than that would be helpful..
– NavinBagul
Mar 26 at 13:02
add a comment |
I would like to have either custom UIView
or UIToolbar
or inputAccessoryView
always visible at the bottom of the screen and not being covered by keyboard when one is presented.
Also keyboard should be visible, meaning it should be presented on top of that view and dismissed accordingly.
It would be nice to have that view as part of the UIViewController, but if it can be part of keyboard it is also acceptable as I have an idea how to achieve the visual impression of it being a part of UIViewController and always visible.
I've run into answers explaining how to add custom toolbar docked at the bottom and shown on top of keyboard once presented.
I've also run into posts explaining how to create a custom keyboard.
There are also some stating keyboard can't be positioned otherwise than docked at the bottom.
I understand if Apple is forcing consistency, but having that view always visible would keep consistency across my app. Therefore, if the final answer is it's not possible, I would appreciate firm explanation or link to apple's mention of this issue, cause I wasn't able to find one so far.
Thanks a lot!
ios swift
I would like to have either custom UIView
or UIToolbar
or inputAccessoryView
always visible at the bottom of the screen and not being covered by keyboard when one is presented.
Also keyboard should be visible, meaning it should be presented on top of that view and dismissed accordingly.
It would be nice to have that view as part of the UIViewController, but if it can be part of keyboard it is also acceptable as I have an idea how to achieve the visual impression of it being a part of UIViewController and always visible.
I've run into answers explaining how to add custom toolbar docked at the bottom and shown on top of keyboard once presented.
I've also run into posts explaining how to create a custom keyboard.
There are also some stating keyboard can't be positioned otherwise than docked at the bottom.
I understand if Apple is forcing consistency, but having that view always visible would keep consistency across my app. Therefore, if the final answer is it's not possible, I would appreciate firm explanation or link to apple's mention of this issue, cause I wasn't able to find one so far.
Thanks a lot!
ios swift
ios swift
edited Mar 26 at 12:34
404
3,5551 gold badge10 silver badges32 bronze badges
3,5551 gold badge10 silver badges32 bronze badges
asked Mar 26 at 12:19
doommonsdoommons
362 bronze badges
362 bronze badges
if on top of it is acceptable, just change the constraints or place of origin of the toolbar to be on top of the keyboard when the keyboard is visible?
– PaFi
Mar 26 at 12:26
Unfortunately not, as I mentioned in question I'm aware of such solution but it doesn't satisfy my needs. I would really like to have it at bottom if it is possible in any way (including writing my own keyboard extension from scratch). Thanks anyway!
– doommons
Mar 26 at 12:29
@doommons - It's unlikely you'll find a way to reposition the keyboard. If the other options you've looked at are not satisfactory, you'll probably need to create your own custom keyboard - which you could then display in any manner you wish.
– DonMag
Mar 26 at 12:48
You can't do that. but if you want to do something like that you have to implement with your own keyboard extension with your custom UI
– Jatin Patel
Mar 26 at 12:55
Hi.. If you have any image to display than that would be helpful..
– NavinBagul
Mar 26 at 13:02
add a comment |
if on top of it is acceptable, just change the constraints or place of origin of the toolbar to be on top of the keyboard when the keyboard is visible?
– PaFi
Mar 26 at 12:26
Unfortunately not, as I mentioned in question I'm aware of such solution but it doesn't satisfy my needs. I would really like to have it at bottom if it is possible in any way (including writing my own keyboard extension from scratch). Thanks anyway!
– doommons
Mar 26 at 12:29
@doommons - It's unlikely you'll find a way to reposition the keyboard. If the other options you've looked at are not satisfactory, you'll probably need to create your own custom keyboard - which you could then display in any manner you wish.
– DonMag
Mar 26 at 12:48
You can't do that. but if you want to do something like that you have to implement with your own keyboard extension with your custom UI
– Jatin Patel
Mar 26 at 12:55
Hi.. If you have any image to display than that would be helpful..
– NavinBagul
Mar 26 at 13:02
if on top of it is acceptable, just change the constraints or place of origin of the toolbar to be on top of the keyboard when the keyboard is visible?
– PaFi
Mar 26 at 12:26
if on top of it is acceptable, just change the constraints or place of origin of the toolbar to be on top of the keyboard when the keyboard is visible?
– PaFi
Mar 26 at 12:26
Unfortunately not, as I mentioned in question I'm aware of such solution but it doesn't satisfy my needs. I would really like to have it at bottom if it is possible in any way (including writing my own keyboard extension from scratch). Thanks anyway!
– doommons
Mar 26 at 12:29
Unfortunately not, as I mentioned in question I'm aware of such solution but it doesn't satisfy my needs. I would really like to have it at bottom if it is possible in any way (including writing my own keyboard extension from scratch). Thanks anyway!
– doommons
Mar 26 at 12:29
@doommons - It's unlikely you'll find a way to reposition the keyboard. If the other options you've looked at are not satisfactory, you'll probably need to create your own custom keyboard - which you could then display in any manner you wish.
– DonMag
Mar 26 at 12:48
@doommons - It's unlikely you'll find a way to reposition the keyboard. If the other options you've looked at are not satisfactory, you'll probably need to create your own custom keyboard - which you could then display in any manner you wish.
– DonMag
Mar 26 at 12:48
You can't do that. but if you want to do something like that you have to implement with your own keyboard extension with your custom UI
– Jatin Patel
Mar 26 at 12:55
You can't do that. but if you want to do something like that you have to implement with your own keyboard extension with your custom UI
– Jatin Patel
Mar 26 at 12:55
Hi.. If you have any image to display than that would be helpful..
– NavinBagul
Mar 26 at 13:02
Hi.. If you have any image to display than that would be helpful..
– NavinBagul
Mar 26 at 13:02
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55357010%2fcan-i-have-uiview-shown-at-bottom-of-the-screen-and-keyboard-presented-on-top-of%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55357010%2fcan-i-have-uiview-shown-at-bottom-of-the-screen-and-keyboard-presented-on-top-of%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
if on top of it is acceptable, just change the constraints or place of origin of the toolbar to be on top of the keyboard when the keyboard is visible?
– PaFi
Mar 26 at 12:26
Unfortunately not, as I mentioned in question I'm aware of such solution but it doesn't satisfy my needs. I would really like to have it at bottom if it is possible in any way (including writing my own keyboard extension from scratch). Thanks anyway!
– doommons
Mar 26 at 12:29
@doommons - It's unlikely you'll find a way to reposition the keyboard. If the other options you've looked at are not satisfactory, you'll probably need to create your own custom keyboard - which you could then display in any manner you wish.
– DonMag
Mar 26 at 12:48
You can't do that. but if you want to do something like that you have to implement with your own keyboard extension with your custom UI
– Jatin Patel
Mar 26 at 12:55
Hi.. If you have any image to display than that would be helpful..
– NavinBagul
Mar 26 at 13:02