Auto Layout is a constraint-based, descriptive layout system for OS X and iOS development.
1
vote
0answers
14 views
IOS6 Constraints using Autolayout
I have an app that can be rotated, so I need to deal with portrait and landscape orientations. Additionally, users will be allowed to use pinch gestures to change the scale of views. Here is the basic ...
0
votes
2answers
32 views
Autolayout and Constraints for iPad
I'm quite confused about the new auto layout feature of xCode 4.5.
Here is I want to do,
By setting the storyboard, I have this portrait view set up.
By using autolayout and constraints(and pins), ...
0
votes
1answer
10 views
UIScrollView isn't working with Auto-layout and Segue
in the ViewController (principal), i have a UiSrcollView called scroller. It works well when i start the app. But, if i use a segue (to pass to another view controller) the uiscrollview stop to works ...
0
votes
2answers
41 views
iOS 6 AutoLayout with multiple tableviews all dynamic heights
Okay so I am stuck. In my app I have a product view. On this view there are two nested table views inside a scroll view. The first tableview is only one cell and holds static text. This text length is ...
0
votes
0answers
35 views
iOS Auto-Layout: Dynamic height for table view cell
I have a table view with a bunch of cells (custom cell, which only has its content view).
In tableView:cellForRowAtIndexPath: I'm adding a predefined UIView (which has several subviews) to the ...
0
votes
0answers
15 views
Relative Auto Layout Constraints in Interface Builder
In code I can set constraints between two objects so that they are relative...
[self.view addConstraint:[NSLayoutConstraint constraintWithItem:item1
...
0
votes
1answer
19 views
why can't I resize my views anymore?
I'm using Xcode 4.6.2, and am having trouble resizing my views.
For instance, I just created a new Storyboard, and dropped one regular UIView on top of another. I went to to change it's top, by ...
0
votes
2answers
28 views
Auto Layout Error in a UICollectionViewCell
I'm trying to debug an Auto Layout conflict in my UI.
I've set the entire UI up using IB.
The problem I'm having relates to objects inside a UICollectionView subclass called FrameCell.
The ...
0
votes
1answer
25 views
UIImageView resizes for in simulator when XIB doesn't
I have an XIB which looks like this:
, but when I run it in simulator (or on device)
it processes like this:
and over-streches. How do I prevent it from stretching and being weird when I simulate ...
0
votes
1answer
16 views
AutoLayouts, Contraints, UIView and re-sizing
I have attempted to search for AutoLayout, Contraints and several other items, but I can't seem to find an easy answer to what appears to be a simple issue. Below are two screenshots. The first one ...
0
votes
1answer
58 views
iOS mapview auto layout issue
Im creating an tab bar app with a storyboard.
Basically on the SecondViewController, I set up an MKMapView with a toolbar at the top for changing views etc.
I set that span and added an annotation ...
0
votes
1answer
12 views
UIButton in subview not receiving touch after NSLayoutConstraint
I have 2 custom UIViews that i'm adding to my UIViewController and then aligning them using NSLayoutConstraint. After I apply the NSLayoutConstraint on the UIViewController view then UIButtons in the ...
1
vote
2answers
47 views
Layout static table cell for iPhone and iPad
I'm fairly new to iOS dev and very new to storyboards. I'm trying to create a basic form using a UITableView with static cells and a "grouped" style.
I'm hoping to make only one storyboard and use it ...
0
votes
1answer
27 views
AutoLayout and animateWithDuration problems
I'm updating my iPhone app for the iPhone 5's larger screen, and there seems to be a problem with animateWithDuration:. Before I turned on autolayout, the interface elements would move slightly up the ...
0
votes
0answers
21 views
UIToolbar Shadow Not Appearing On iPhone
I am adding a toolbar using lazy instantiation and placing it with NSLayout Constraints:
Instantiation of Toolbar
/**
* a toolbar to keep at the top of the view
*/
- (UIToolbar *)toolbar
{
if ...
0
votes
0answers
30 views
Laying Out Buttons on iOS 5 for iPhone 5 and iPhone 4 or lower
I'm having issues getting my screens to all look right in my app. In the iPhone 3.5" screen it shows as:
This is great, however on a 4" screen it looks like:
The issue is that I CANNOT use ...
0
votes
0answers
29 views
iOS auto layout on view controller rotation
What's the "correct" way to handle updating auto layout constraints on view controller rotations?
For example, I have a subview that is on the top of the screen set with an NSLayoutContraint as such:
...
0
votes
0answers
36 views
NSSplitVIew - auto saving divider positions doesn't work with auto layout enabled
With auto layout enabled, auto saving divider positions by setting an autosave name for the NSSplitView in interface builder results in each divider being completely collapsed on an app restart. ...
0
votes
0answers
24 views
What could cause this kind of error when inserting into a collection view?
I get a really disgusting error when inserting into a collection view. I use autolayout, and everything has been setup through interface builder.
Error is here as was too big to paste.
Has anyone ...
0
votes
0answers
34 views
How to set up a NSLayoutConstraint in a NSScrollView?
I am new to NSLayoutConstraint.
I want to manage the content of a NSScrollView programmatically. At the end, what I want to do is to create a subclass of NSScrollView with a method - add:(NSView ...
0
votes
0answers
24 views
it looks like autolayout is preventing my from changing a view's center
One feature of my app is something that does automatic cropping of an image.
The basic idea is that someone would take a picture of a piece of paper (think: receipt), and then the image could get ...
0
votes
1answer
83 views
Is it possible to use AutoLayout with UITableView's tableHeaderView?
Since I discovered AutoLayout I use it everywhere, now I'm trying to use it with a tableHeaderView.
I made a subclass of UIView added everything (labels etc...) I wanted with their constraints, then ...
2
votes
1answer
139 views
UIScrollView with iOS Auto Layout Constraints: Wrong size for subviews
I'm trying to generate a view in code. Here's the hierachy of my view object
UIScrollView
UIView
UIButton
The ScrollView should be the same size as the window.
The button should be as big as ...
4
votes
2answers
91 views
Auto Layout and in-call status bar
I'd like to ask about Auto Layout and in-call status bar. Here's a simple scenario that demonstrates my problem:
Create project with "Use Storyboards" enabled
Add "View Controller" and enable its ...
-1
votes
1answer
37 views
iOS Autolayout proportionally resize UIViews?
I'm trying to learn Autolayout, so I'm reading through tutorials and also messing around with some UIViews just to see what I can get them to do. I'm wondering how I would accomplish something like ...
0
votes
1answer
20 views
Aligning a view next to another view using FLKAutoLayout
I would like to align two views (in this case UIButton instances) next to each other. I want the first button to be left aligned to its superview, which is easy, but I don't see a way to make the ...
1
vote
1answer
30 views
How to create a custom UIView that defines a baseline?
Using the NSLayoutConstraint class, it is possible to create a constraint that is based on a view's baseline (NSLayoutAttributeBaseline). However, I haven't seen any documentation that describes how a ...
0
votes
1answer
40 views
Changing size of UIButton while using Autolayout?
I'm pretty new to ios. I'm working on a project which is going to frequently use a certain UIView class throughout the application. This class is simply an image that does some transparency stuff ...
1
vote
1answer
58 views
Rearrange UIView Subviews if a Subview is removed in Auto Layout
I am in a need of implementing a drag and drop controller in Full-Auto Layout environment.
I have achieved the dragging and dropping successfully, but the issue is if I drag a subview from another ...
0
votes
1answer
83 views
iOS 6 animate size of view and have constraints move other views
I'm playing with iOS 6 autolayout for the first time and I'm trying to figure out how to mix autolayout and animation.
I've got container view, ViewA, which is a certain height. I've got a ...
0
votes
3answers
80 views
UIImageViews embed in UIScrollView in code w/ auto layout on
I am currently having trouble with my iOS app and Autolayout. I want to let the user scroll photos from Tumblr in a UIScrollView (similar to Photos app, when scrolling your library). So when my ...
0
votes
0answers
11 views
The view didn't look like the storyboard design?
I designed a view, looked like (I checked "Use Autolayout").
After that, I unchecked "Use Autolayout". When I ran on simulator, the view looked like.
What happened ?
0
votes
1answer
39 views
how to minimize frame using NSLayoutConstraints in autolayout?
I am working on autoLayout in iOS6. I wanted to reduce(minimize) size(frame) of UIView. Currently my view is 320X480. I wanted to make it 160X240 keeping center point as it is.
Added ...
1
vote
1answer
58 views
intrinsicContentSize vs. sizeThatFits. What's the difference? What are the use cases for each?
I understand that intrinisicContentSize is part of the AutoLayout API, but other than that, I'm seeing lots of functionality overlap between it and the -sizeThatFits method.
In what circumstance ...
0
votes
0answers
13 views
Centering zooming ScrollView image with constraints in lieu of explicit centering logic
Matt Neuburg's Programming iOS6 book demonstrates code (Chapter 20) for implementing a self centering iOS6 / Autolayout based zooming image view. The question I have, is is it not possible to write a ...
1
vote
1answer
49 views
Label on UIButton appears corrupted
I have a very simple view controller with some UIButtons of type UIRoundRectButton. They look okay in Interface Builder but on the device / simulator the text label appears to be clipped in a strange ...
0
votes
1answer
78 views
UIView postion changes in retina display
I added a subview named LayoutView in my viewcontroller. LayoutView then added a subview named SectionView by the given code:
MSSectionView *sec1;
sec1 = [[MSSectionView ...
3
votes
2answers
36 views
Stop UITableViewCells from animating when animating a UITableView
I am animating a UITableView. I want the table view to slide open like this:
http://www.youtube.com/watch?v=XIGJLbiRsXE
However, it opens like this:
http://www.youtube.com/watch?v=UJUX-ILCB_0
...
0
votes
2answers
108 views
AutoLayout constraints for a autoresizing view created in ViewController's loadView
My ViewController creates his view by overwriting the loadView method:
- (void)loadView {
UIView *view = [[UIView alloc] init];
view.autoresizingMask = ...
0
votes
1answer
48 views
UIImageView within UIView doesn't respect constraint
I have a UIView of size width: 285 and height: 243. Within that view, I have a UIImageView (it is within that UIView according to Storyboard). That UIImageView has width 283 and height 241 (so that ...
1
vote
1answer
26 views
Trying to understand Auto Layout
I'm trying to understand how to use Auto Layout but I haven't been able to wrap my head around how to accomplish something like this using it. I have an iPad ViewController with two subview views. I'd ...
0
votes
1answer
109 views
Resize UITextView inside a UITableViewCell with iOS Autolayout
My Goal
I'm creating a custom UITableViewCell (MessageCell), and I'd wish to have my UITextView resizing both in width and height whenever the cell changes its size, while keeping some basic ...
0
votes
2answers
60 views
Evenly spacing several rows of an arbitrary number of elements using NSLayoutConstraints
I have a question about using layout constraints for the following scenario. Everything is in code (no nibs or storyboards). I want to create a view that contains an arbitrary number of rows of items. ...
0
votes
1answer
54 views
Custom border for UIView using CALayer and autolayout
I have to draw a custom border for a UIView.
I already have code to do that but it was written before we started using autolayout.
The code basically adds a sublayer of width/height=1.0f
...
1
vote
1answer
47 views
How to use Autolayout Programmatically to give vertical space between views?
In my app i have to layout two views vertically according to each and want to make sure they look similar in iPhone 4&5.
Here's the code :
nextShowView = [[WestwoodNextShowView ...
1
vote
1answer
72 views
iOS - Testing User Interface (Auto Layout / Layout Constraints)
I am looking for best practices, advice, and insight on how to test a user interface that leverages layout constraints.
My view controller subclass is displaying "leaf-level" data - for sake of ...
1
vote
2answers
223 views
Use autolayout to set dynamic UIView to match container view
I have a UIView in IB that has another UIView within it, which I am using as a container view. In code, I create three different views and then animate the appropriate one into the container's view ...
0
votes
1answer
83 views
Dynamic uiview layout with auto layout
I'm working with autolayout and its been going very well so far but right now I am at lost as to the way to proceed to achieve the design I want.
I got a a small questionnaire with 2 sections. Each ...
0
votes
1answer
102 views
Evenly Space UIViews of equal sizes in superview using Auto Layout in iOS 6
I am in a need of having the series of buttons to be evenly placed in superview Horizontally using Auto Layout.
Here, I want to keep the sizes of the subviews same, only the center of the subviews ...
0
votes
2answers
117 views
How to do this simple thing with XCode's new Auto Layout feature?
Im trying to do something that seems like it should be a no-brainer. But alas, im too dumb to figure this one out. So i need help.
I have an iphone simulator (with a vertical orientation).
The main ...




