Tagged Questions
0
votes
0answers
24 views
NSLayoutConstraint between Navigation Bar & ViewControllers View
Can we add a NSLayoutConstraint between self.navigationcontroller.navigationbar and a view inside the self.view. Here self is a UIViewController instance and _textField is a subview of self.view
What ...
1
vote
1answer
44 views
UINavigationController & Auto-Layout: RootViewController's view is not shown
I'm trying to use a navigation controller in my iOS-Project. Here is the setup of my AppDelegate class:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary ...
0
votes
0answers
13 views
Autolayout+UIView+Its subview
I have a UIView and it has another UIView and some UIButtons as sub view.I gave vertical constraint to my view and last UIButton.Those UIButtons are one after the other vertically designed like radio ...
0
votes
0answers
22 views
UIScrollView+setContentOffset+AutoLayout
Some UITextFields and UIButtons are subviews of a UIScrollView. I set autolayout property. All working fine except I had the problem when I click on a textfield to type. I gave ...
1
vote
1answer
102 views
Change UIImageView size to match image with AutoLayout
I want to change my UIImageView height/width to match the image i choose from photo album and i found a snippet on here that does that.
-(CGRect)frameForImage:(UIImage *)imgs ...
0
votes
1answer
40 views
iOS 6 autolayout scrollview not scrolling with two tables
I have a scrollview with two tableviews side by side, and a bottom navigation bar.
Both tableviews should consume the entirety of the view, but scroll together if their content is too large for the ...
4
votes
1answer
124 views
iOS Autolayout with UIScrollview: Why does content view of scroll view not fill the scroll view?
The following code (called in viewDidLoad) results in a fully red screen. I would expect it to be a fully green screen. Why is it red? And how can I make it all green?
UIScrollView* scrollView = ...
3
votes
1answer
77 views
Stop a UIImageView from returning to its original location in a View?
I was working through a very simple Ray Wenderlich iOS "dragging" example, where 2 UIImageViews (a monkey and a banana) can be dragged around the screen. It utilizes a UIPanGestureRecognizer in the ...
0
votes
1answer
52 views
Local declaration of iOS 6 only pointers (e.g. NSLayoutConstraint)
I have an App which supports both iOS 5 and iOS 6.
In one class I need to declare locally some NSLayoutConstraint pointers, which are iOS 6 only.
I use them just for the iOS 6 layout, because for iOS ...
0
votes
1answer
35 views
Autolayout with TableViewController
I have my DetailViewController that I originally based on a UIViewController. The view uses Table View with static cells, but xcode then started to complain that I should use UITableViewController as ...
0
votes
0answers
38 views
Crash while using Autolayout
I have an app that works very will without Autolayout. After I introduced Autolayout and made sure all the "Constraints not satisfying" type messages disappear from the console log, I can load my view ...
0
votes
1answer
41 views
AutoLayout Problems
I am struggling with Autolayout (using it for the first time in a new app).
Following situation:
Storyboard
iPad
Autolayout enabled
In one Popover I need to re-layout 8 buttons programmatically ...
1
vote
1answer
47 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
105 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
1answer
45 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
51 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
1answer
65 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
150 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
1answer
52 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
83 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
19 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
3answers
172 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
69 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
27 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 ...
1
vote
1answer
88 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 ...
0
votes
1answer
155 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
1answer
197 views
How to create labels with dynamic size in iOS 6 with autolayout
I'm having trouble with autolayout and labels that get their text set in the source code based on some external conditions. These layouts (portrait and landscape) look like this on the simulator:
...
2
votes
3answers
74 views
Moving elements when changing UIView frame
I have few UITextView's. Every TextView changes it's sizes on focus - it grows about 50px with animation like this:
[UITextView animateWithDuration:.1f animations:^{
CGRect new_frame = ...
1
vote
4answers
509 views
UILabel sizeToFit doesn't work with autolayout ios6
How am I supposed to configure programmatically (and in which method) a UILabel whose height depends on its text? I've been trying to set it up using a combination of Storyboard and code, but to no ...
0
votes
1answer
136 views
UIScrollView contentSize autolayout constraint issue
Here's the situation.
I have an UIScrollView that uses autolayout that successfully adjust to the screen when I rotate it, my problem comes with the scrollView's content that doesn't adjust.
The ...
3
votes
1answer
167 views
CGRectMake doesn't work for custom frames in viewDidLayoutSubviews
This is the code I'm using:
-(void)viewDidLayoutSubviews{
CGSize screenSize = [[UIScreen mainScreen] bounds].size;
if (screenSize.height <= 480.0f) {
self.img.frame = ...
-1
votes
1answer
141 views
iPad iOS6 where to find Autolayout programmatically example project
I'm looking for an example xCode project that can demonstrate how to apply autolayouts to UIViews programmatically. I see quite a lot of questions that deal with how to apply autolayout, but I'm a ...
0
votes
0answers
160 views
Programmatically attempting NSLayoutContraint gives “Unable to simultaneously satisfy constraints.”
I seem to be having some problems settings up my constraints programmatically for a UITableView I am using. My attempt is below, and have tried every combination of using the ...
0
votes
1answer
45 views
Aling UIView to a UIToolbar using autolayout
I trying to align an UIView to the bottom of a container view(UIScroolView) and above a tool bar.
It works perfectly when design to the iphone 3.5 display but when a change my layout to the 4.0 ...
0
votes
3answers
492 views
iOS Autolayout - How to set two different distances between views, depends on the screen height
I know I'm missing something, because this has to be something easy to achieve.
My problem is that I have in my "loading screen" (the one that appears right after the splash) an UIImageView with two ...
-1
votes
1answer
60 views
How to properly add a uiscrollview [closed]
Ok so while developing my app I´ve overcome so many kind of troubles. But what gets me in troubles every time I use its the scrollView (I think this may be caused by autolayout, but this is just my ...
0
votes
1answer
30 views
Spacing between labels not updated when using sizetofit and landscape
I have two UILabel's separated by a spacer, expressed like this in visual format language.
@"V:[label1]-[label2]"
When label1's text changes i call:
[label1 sizeToFit];
In portrait mode label2 ...
0
votes
1answer
333 views
TableView Cell contents not shifting in editing mode iOS 6
I have subclass of UITableViewCell. Here is my setup
I have used Autolayout. Now when user swipe on cell , I can see "Delete" button , but it overlaps my right side imageview. Cell contents are not ...
0
votes
1answer
218 views
IOS - Centering UIScrollView inside UIView container programmatically with Autolayout issue
I'm trying to replicate the safari pages scrollview, which has its frame that is slightly narrower than iPhone screen. So According to few suggestions I'm placing a the scrollview (450x280 points) ...
2
votes
3answers
558 views
Use Auto layout or not iOS 6.x
I'm developing an app with Storyboard on iOS 6.1 (with many features - star ranking, sqlite DB, apple maps, etc..). Sometimes It happens that I have to disable the auto layout (for UIScrollView for ...
2
votes
2answers
139 views
Centering two buttons with Cocoa Auto Layout
I have a problem with Cocoa Auto Layout and can't get my head around this problem.
All I'd like to achieve is to have two buttons always centered in a view as depicted below.
I've tried lots of ...
3
votes
1answer
368 views
Why does auto layout in table view cells cause the table's content size to be incorrectly changed?
I'm using Xcode 4.6.1 and I have an iOS 6.1 app.
It has a table view that drills down into another table view. The second table view uses custom cells to display its data. However, there is a problem ...
0
votes
2answers
558 views
From May 1 - iPhone 5 support - then what is the minimum iOS version appstore supports?
Apple posted in its developer news -
"starting May 1, new apps and app updates submitted to the App Store must be buit for iOS devices with Retina display and iPhone apps must also support the 4-inch ...
0
votes
0answers
135 views
Grouped UITableView height shrinks in NSAutolayout iOS 6
I have grouped uitableview in my view controller & its constraints are as shown below
Now in viewDidLoad I made web service call to get the data from server. I am using pagination. When 2/3 ...
0
votes
1answer
122 views
AutoLayout works for UIView but not for UILabel. Why?
Desired Scenario: create a custom Alert View via iOS6's AutoLayout vs Frames:
1) Create an empty UIView upon the host view (UIController.view):
alertView = [[UIView alloc]initWithFrame:CGRectMake(0, ...
0
votes
1answer
111 views
Is there a way to get the 'Visual-Format Language' of AutoLayout XIB?
I'm slamming into brick walls.
Is it possible to get the Visual-Format Language generated from an AutoLayout XIB?
I wish to emulate the XIB equivalent in code.
0
votes
1answer
89 views
Gracefully hiding and showing views when using Auto Layout in iOS 6
I thought there might be a way to easily hide and show a button in a row using auto layout so that views could be automatically arranged neatly depending on which are visible.
For example, say I ...
0
votes
1answer
146 views
Keeping a UILabel centered with changing contents and AutoLayout
I have 2 views. A MapKitView and a UILabel. Auto Layout is on.
I want the MKView to take up the whole screen (this seems to work fine) and the UILabel to remain the auto distance from the bottom of ...
0
votes
0answers
94 views
Problems with a UICollectionView as the first viewController of UISplitView
Hi all iOS developers :)
First of all some important things. I'm using autolayout, and loading the UICollectionViewCell subclasses from a nib file. I don't change the size of cells or do some dirty ...
1
vote
1answer
27 views
Layout doesn't change after modifying constants
I have a UIView on my UIViewController. I set width and height using Editor -> Pin -> Width/Height. Also i created IBOutlet of these constraints to change widht and height programatically. I worte ...



