What constraints should I add in Interface Builder to a custom keyboard to act exactly like built in one when the user changes orientation like in the images below (All the buttons stretch horizontally and shrink vertically with equal spaces between them).
iOS Custom Keyboard Autolayout
1k Views Asked by Moataz Hossam At
1
There are 1 best solutions below
Related Questions in IOS8
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
Related Questions in AUTOLAYOUT
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
Related Questions in NSLAYOUTCONSTRAINT
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
Related Questions in CUSTOM-KEYBOARD
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is pretty easy (if you know how to do autolayout).
So first of all, just drag the buttons(or UIView) you'd like to have to the background view. And manually layout them like what you wanted.
And I would start with the first row (Q~P), constraints could be setup like this
Q -> leading space to container: 4px
P -> trailing space to container: 4px
Q-W, W-E, E-R, R-T, T-Y, Y-U, U-I, I-O, O-P all has horizontal space like 4px
The interesting part is to determine the width, simply let Q-W, W-E, E-R, R-T, T-Y, Y-U, U-I, I-O, O-P have equal width. Why are we setting this constraint? Because once you fixed the Q leading, P trailing and all the gaps, setting them to be equal width will automatically let all the first row buttons to equally share the rest of the keyboard width (which is our button width). Forgot to mention, WERTYUIOP should center y to Q.
Now you just determined the first row with button width.
How do you determine the height? The idea is the same, the total keyboard height is comprised of the top margin(the gap on top of Q) and the bottom margin (the gap below space, or 123), the gap between rows and 4 * button height.
So, you can setup constraints like this, use Q, A, Z and 123 to determine the button height.
Q -> top space to container: 4px 123 -> bottom space to container: 4px Q-A, A-Z, Z-123, all have vertical space 4px and then set their height to be equal just like what we did for button width.
Then you can add constraints to W-P, to have equal height with Q (we just determined height for Q, A, Z, 123).
Now the first row is properly determined, next we consider the second row. We need a reference base for the x position of second row, you can maybe add constraint to G for center horizontally to container view, then setup the gaps for all the buttons in second row to be the same as first row(in this example, 4px). now you have 2nd row determined.
For the 3rd row, its really easy, you just need to position each button with the 2nd row. For example,
Z -> center x to S -> equal width to S
Remember that we have determined the y position and height for Z, so no need to do that anymore. For X-M, center them to Z for y, center them to 2nd row button for x, equal width to 2nd row button and equal height to Z.
I hope you get the idea, the major part of autolayout is to find the BASE, you need to have a starting point to start with so that all elements know where they should be as the container view size changes.
Hope this helps.