layoutSubviews is a method that is called automatically during view size changes. It can be used by a custom view to perform additional manual changes above and beyond any autoresizing behaviours

learn more… | top users | synonyms

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
107 views

where to create autolayout constraints for subclassed uitableviewcell?

I am trying to use autolayout for a uitableviewcell subclass I am creating and I would appreciate some advice on what method to put the layout constraint creation code. I have been searching around ...
0
votes
0answers
67 views

Custom UITableViewCell and subviews position

In my custom UITableViewCell i rewrite method (void) layoutSubviews, in this method i set new subviews position: for (NSUInteger i = 0; i < views.count; ++i) { ViewData *viewData = (ViewData ...
0
votes
0answers
10 views

UILabel width invalidates on editting action

On a subclass of a UITableViewCell I use the following layoutSubviews method: - (void)layoutSubviews { [super layoutSubviews]; CGFloat maxWidth = CGRectGetWidth(self.frame) - 50.0f; // - 25 ...
0
votes
1answer
178 views

Custom UIView layoutSubviews with orientation and animations?

I'm in a dilemma which method to use for setting frames of custom UIViews with many subviews in it and still have animations and automatically adjust to rotations. What I usually do when I create a ...
0
votes
2answers
133 views

Custom UIView causes a EXC_BAD_ACCESS code = 1 in layoutSubviews

I have created a custom UIView which is instantiated 3 times from UIViewController. From the viewDidLoad method of that UIViewController: self.remainingDays = [[RemainingTileView alloc] ...
0
votes
0answers
120 views

ios - laying out and resizing multiple nested view controllers

I have a view hierarchy setup in an ios app as follows Root VC: Navigation Controller UI View Controller (VC1) Page control Page view controller Each page contains a UIViewController (VC2) Tab ...
0
votes
1answer
116 views

layoutSubview resetting properties of UILabel

I have a ViewController with a UIScrollView on it. On this VC I programatically adjust the frame of a UILabel which is inside the scroll view. This is done on viewDidLoad. This UILabel comes from the ...
0
votes
0answers
127 views

iOS recommended way of handling portrait and landscape orientation interfaces

I am working on an iPad app and want to support both portait and landscape orientation. Currently, I am seeing three ways to handle orientation: 1) Apple recommends using two view controllers ...
2
votes
1answer
376 views
+50

Is there any way that I can manipulate the parent view controller so that the subviews will be underneath the UIPageControl?

I'm implementing horizontal scrolling in an app by making use of an UIPageViewController which I set the navigation property to 'Horizontal' and the Transistion Style to 'scroll'. Everything works ...
0
votes
2answers
87 views

Rearranging subviews from 2 line to 1 according to the device orientation

G’day guys, I am initially targetting the iPhone, with iOS6.1 but hints and code able to run flawlessly also on the iPhone with iOS5.1 is welcome. I have a custom UITableViewCell with 7 different ...
3
votes
2answers
127 views

Should we add UITableView in initializer or layoutsubviews method in iOS?

I am designing a Custom UIView for my app. The UIView will comprise of below components: UISearchbar UITableView My initialiser is below: - (id)initWithFrame:(CGRect)frame { self = [super ...
0
votes
0answers
28 views

Is it expensive to set font in custom table view cell's -layoutSubviews?

I have a custom table view cell that has "preferred Font" and "uses Bold Text" properties. I'm not passing these to its designated initializer because I already have a number of initializer ...
2
votes
1answer
203 views

layoutSubviews called twice when rotating

When my main view rotates I want to re-arrange the sub views, so in my ViewController, I override willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)orientation ...
2
votes
1answer
443 views

UITableView “swipe to delete” button frame issue

I am using a custom UITableViewCell in my app, and I am trying to adjust the frame of the “swipe to delete” button. This is what I’m doing: - (void)layoutSubviews { [super layoutSubviews]; ...
0
votes
0answers
50 views

When App launch UIImageView get not resized after layoutSubviews

I start App, I adjust the imageview frame in layoutSubviews (it is in a UITableView) but it not get resized, just after the first rotation. Why? - (void)layoutSubviews { [super layoutSubviews]; ...
0
votes
1answer
530 views

Resizing subviews with auto layout

If I have a viewController with it's XIB, autolayout enabled and the main view (I mean self.view) have a subview in it that have the same width and height as the parent. If i put this controller ...
1
vote
0answers
56 views

Can I make my tableview move more fluidly by reducing calling [CALayer LayoutSubviews], and how?

According to time profile, I found that my app waste too much time on [CALayer layoutSublayers] due to calling [UITable layoutSubviews]. So the action generating tableview is not smooth, whenever tap ...
0
votes
0answers
146 views

CALayer + layoutSublayers + Zoom Lagging

I have a CALayer which belongs to a UIView, which is inside a UIScrollView. When I pinch/zoom, the CALayer tracks nicely with the UIView. But now I have sub-layers that I added to the view's layer ...
0
votes
1answer
181 views

Why UIScrollView's scrolling triggers layoutSubViews method in iOS 4.3 but not in 5.0 & above?

I have customized UIView to create a custom UI component. The hierarchy of views are this way. ----Custom UIView ----------------UIScrollView -----------------------------Sub Views in ScrollView ...
0
votes
1answer
215 views

Calling setNeedsDisplay in layoutSubviews?

Consider a view with a custom background that is drawn in drawRect:. If the view changes size, the background need to be redrawn. Is this a bad idea? - (void) layoutSubviews { [super ...
1
vote
1answer
73 views

Wrong non-zero sizes on glGetRenderbufferParameterivOES

This is similar to another question that was on stackoverflow but the sizes there were 0,0 and here I am getting wrong strange non zero sizes. So it appears that this might qualify as a different ...
0
votes
1answer
381 views

Auto position subviews of UINavigationBar's titleView

I have a custom titleView for displaying Navigation title and sub-title. The title font is bigger than sub-title. Here's what I have now: CGRect headerTitleSubtitleFrame = CGRectMake(0, 0, 200, 44); ...
2
votes
1answer
231 views

iOS6 layoutIfNeeded doesn't trigger layoutSubViews for UITableViewCell

In my app I have a table view with customised table view cells. In iOS5 i use the following snippet of code to get the correct height for my customised cells. In iOS6 after doing a [tableView ...
0
votes
1answer
313 views

Custom iOS UITableViewCells not being re-laid out when recycled

I have a UITableView which is displaying update posts from various social networks. I have custom UITableViewCell subclasses, which have a custom UIView inside, which is responsible for drawing all ...
2
votes
2answers
766 views

why isn't -layoutSubviews being called?

I'm trying to create a custom layout for some subviews. My file is a ViewController, so I have to refer to its view as self.view. The subviews are subviews of self.view. When I call [self ...
1
vote
0answers
255 views

UILabel resizing wrongly in LayoutSubview

I have a subclass of a UITableViewCell to show a custom cell. This class is integrated with Storyboard and therefore the frames of the properties have already been set in IB. My aim is to dynamically ...
0
votes
1answer
300 views

Possible to implement UIScrollView with zoomable, and aspect fit content?

I want to create a scrollView that works exactly like you pan/zoom an image in the Photo app: -A landscape image is aspect fit on the portrait screen, -You can zoom into the image, -If you rotate ...
1
vote
0answers
268 views

MPMoviePlayerController not rotating views when in fullscreen mode

I am currently working on a masterDetail app for iPad iOS 5.1. when a row is tapped in the masterViewController, a video is played in the detail view controller. The video plays fine and can be ...
1
vote
1answer
802 views

UIScrollView with custom layoutSubviews does not animate anymore

I have a subclass of UIScrollView that I'm using for images slideshow, with infinite scrolling and circular slideshow. I used to animate the transition in this way: (Because I wanted the transition ...
1
vote
1answer
1k views

UIScrollView content size clipping subviews when it shouldn't

I have a UIScrollView that contains several dynamically resizing subviews. I can resize and layout the subviews just fine, but when I set the content size of the scroll view itself, the bottom ...
1
vote
1answer
848 views

Animations inside of layoutSubviews?

I have a view (LSTabBarView) which supports insertion/deletion of new elements with the following methods: - (void)insertItem:(LSTabItem *)item atIndex:(NSUInteger)index animated:(BOOL)animated; - ...
0
votes
1answer
361 views

iPhone - layoutSubviews being called when updating subview

I have a custom view with a grid-like layout. When I touch each subview I want to animate them. The superview overrides layoutSubviews to create the grid of subviews. The problem is whenever I ...
2
votes
2answers
1k views

UIScrollView layoutSubviews behavior changes in iOS 5?

I'm working on a component that is a subclass from UIView and contains a UIScrollView. When scrolling, I noticed different behaviors depending on which SDK I build with. On iOS 4 the layoutSubviews ...
2
votes
3answers
2k views

how to force layoutSubviews of UIView

I have a custom UIView which has a dedicated, manually set frame for portrait and landscape orientation because autoresizingMasks just don't work in my case. I set this frame in - ...
3
votes
2answers
455 views

Possible to make superView intercept layoutSubviews: from subviews?

To allow for flexible layouts, I wanted to create a subclass UIView that overrides layoutSubviews: to layout all of its subviews under each other automagically and would continue to do this every time ...
2
votes
1answer
323 views

custom method in custom view for subview layout, or use of layoutSubviews/layoutIfNeeded

I have a custom UIView that is used within a UIViewController. The custom view needs some custom/programtic layout. What I'm currently doing is, from within the controller "viewDidAppear" method I'm ...
0
votes
1answer
241 views

iOS: layer (updating on CADisplayLink) added to view triggers [view layoutSubviews] 60x/sec — Why?

I cannot figure this out. I have a view. it is a speedometer. I put a needle in the speedometer: - (id) initWithFrame: (CGRect) frame { self = [super initWithFrame: frame]; // [super ...
0
votes
1answer
4k views

When I used layoutSubviews method of UItableViewcell with category in my file,something disappeared

when I used layoutSubviews method of UItableViewcell with category, just like the code below @implementation UITableViewCell (forimage) - (void)layoutSubviews{ [super layoutSubviews]; ...
0
votes
1answer
701 views

UIScrollView not calling layoutSubviews while zooming on iOS 4.0

I've read many of the UIScrollView questions asked on here but none of them answered this problem. I have a UIScrollView that zooms a view containing other subviews. When a zoom is happening, I need ...
0
votes
2answers
2k views

how do I set the size/position of a custom UIView for its placing within a custom UITableViewCell?

How do I set the size of a subview which is being placed programmatically inside a UITableViewCell? I have a custom (subclassed) UITableViewCell in which part of the cell includes a number of rows ...
1
vote
2answers
673 views

How to access UITableViewController variable from within a subclass'ed UITableViewCell?

How do I access UITableViewController parameter from within a subclass'ed UITableViewCell? I have a parameter in the UITableViewController for the font size (i.e. users can change font size). So the ...
1
vote
1answer
917 views

how do I handle subview resizing in a UITableViewCell going in & out of EDIT MODE?

QUESTION - How do I handle subview resizing in a UITableViewCell going in & out of EDIT MODE? BACKGROUND - I've worked out how to size my UiLabels & UITableViewCell based around the text ...
2
votes
2answers
2k views

Change background image on ipad after rotation

I show bg of my app using UIImageView. To support correct interface rotation i write layoutSubviews method. In this metod .frame property changes correctly, but when i try change image of UIImageView ...
0
votes
2answers
1k views

layoutsubviews only called once despite any device rotation

just what the title says: I create an empty UIView subclass and I add a subview to it, I create an empty layoutSubviews method and I add a breakpoint there. Then I build the project and the simulation ...
1
vote
2answers
660 views

Using layoutsubviews() works properly when cycling through UIButtons, but not when cycling while retrieving them by tag

I'm trying to mimic the iPhone Springboard drag and drop functionality for a tile game and am currently using MatrixCells to generate UIButtons in the View initalisation and add them to the view. The ...
1
vote
4answers
5k views

Overriding layoutSubviews when rotating UIView

When rotating a scroll view inside a UIView, the scroll view doesnt position correctly using its default autoresizing behaviour. Thus, when rotation occurs, in willRotateToInterfaceOrientation i ...
0
votes
1answer
2k views

Manual positioning of titleLabel in a custom UIButton (using layoutSubviews)

i've create a UIButton subclass for my app and i need to manually reposition the titleLabel to be about 1/4 of the button's height. this post; http://forums.macrumors.com/showthread.php?t=763140 ...
11
votes
3answers
4k views

layoutSubviews during an animation?

I have a UIView with a bunch of subviews, all positioned using -layoutSubviews. When the view is resized, the relative positions all change. I'd like these re-calculations to happen during an animated ...