-1
votes
0answers
12 views

How do I change the frame of the indexed UITableView?

I want to change the frame of UITableViewIndex, what should i do? for(UIView *view in [self.tableViewContent subviews]) { if([view respondsToSelector:@selector(setIndexColor: )]) { ...
0
votes
1answer
23 views

UIView animate frame of ImageView

I'm trying to add an animation to a UIImageView when a button is tapped. When the button is tapped I want the imageView to move to the right at the same time as it is increasing in size. I have tried ...
0
votes
2answers
60 views

iOS - Changing frame of a subview of a subclassed UIView (using storyboard with auto layout enabled)

I am building a custom progress bar (subclass of UIView). I add an UIImageView to the UIView that uses repeating images to display the progress. The view is added to the storyboard and I can get it to ...
0
votes
0answers
30 views

Resizing subviews of a UIView subclass (loaded from Nib)

I have a UIView subclass that I'm loading from a Nib. I'm trying to dynamically size a UITextView that is a subview of my UIView subclass. No matter what I try to do, it seems like the frame is ...
0
votes
2answers
31 views

Custom UIView Placement within Superview

I have a custom UIView subclass that needs to be at the bottom of the superview. I set the view's origin using: CGRect subviewFrame = subview.frame; CGPoint newOrigin = CGPointMake(0, ...
0
votes
0answers
33 views

Dealing with origins and sizes for different elements 4in display and 3.5in

I am trying to confirm what would be the best/most efficient way to display buttons on the 4inch (iphone5) and 3.5(other iphones). This is my current code: CGRect screen = [[UIScreen mainScreen] ...
0
votes
1answer
102 views

How to set Multiple ImageView and UIview with some dynamic label for that Imageviews in UIScrollView?

I am devloping one application in IOS 6 with xcode 4.5 in which am using Master Detail View Controller with StroyBoard there is one UIScrollview and in that i am adding multiple images from parsing ...
0
votes
3answers
151 views

IOS - Getting Xib frame size

In myViewController.m I'm trying to add as subview a custom UIView called AlbumView : -(void)viewDidLoad { AlbumView *album = [[AlbumView alloc]init]; [self.view addSubView:album]; ...
3
votes
2answers
87 views

How do I position UIView in superview?

Im adding a UIImageView with a UIImage which I wish to appear in the center top of the main UIView. I will be using a UIPageControl to swipe that view off to the left and bring in the new one from ...
2
votes
1answer
86 views

Why does a landscape view report it's center as if it were portrait?

I have a landscape only app. The views are designed in IB as landscape (568x320). Yet when I do this: NSLog(@"view center: %@", NSStringFromCGPoint(self.view.center)); I get this: view center: ...
0
votes
0answers
53 views

Change background of frame

I have a "frame within a frame" scenario. There is a 600x600 area inside of the main screen. What I would like to do is to just color the 600x600 area so that I can visualize where I am working. I ...
1
vote
4answers
122 views

Objective C: how to get the string equivalent, or variable name of a method argument call

I want to make a simple method that logs a view's frame, but also logs the name of the specific view input. Is there an easy way to get the string equivalent of the called view, aside from inputting a ...
0
votes
2answers
50 views

Reseting rotation of UIView to 0

How can I reset rotation of my View back to zero while keep other transformations on that view unchanged. I cant use: [myView setTransform:CGAffineTransformIdentity] as it will rest all the other ...
5
votes
5answers
2k views

How to set the frame for iphone 4 and iphone 5 in ios6

I want to update my application to ios 6. so how to set the frame size comfortable both iphone 4 and iphone 5?
-1
votes
1answer
249 views

set UIView Frame in viewDidAppear, to solve frame issues in iPad for Launch orientation mode Landscape

I am launching my app (iPhone and iPand) in landscape mode. I found that frame for iPad frame changes in viewDidAppear , than the one in viewWillAppear. IOS IPAD 5.1 simulator In viewWillAppear ...
0
votes
0answers
92 views

Changing a UIView's frame causes content in new area to be untouchable

So I want to expand a uiview in the case of a certain condition (a messaging application). I expand and contract the view using this code (and move around the picture appropriate buttons to be in the ...
0
votes
0answers
74 views

Animate UIView expansion to reveal previously hidden, out of frame, subview

I want to add a subview to a "parent" view outside of the parent's current frame. Then, when the parent view is touched, I want to animate the master view's frame to reveal the previously added ...
0
votes
0answers
96 views

Changes UIView‘s frame lead to subviews disordering?

I reset the view's frame to move it to a new position after the device rotates. It works on changing the view's position, but the subviews all go to wrong position. And I tried another way using the ...
0
votes
1answer
70 views

Settings child.frame = parent.bounds?

Is it logically valid to do this: child.frame = parent.bounds Let's say I want add new CALayer as view's default layer sublayer, and I want that new CALayer to be positioned at (0,0) and have ...
1
vote
2answers
2k views

iOS UIView get frame after rotation

I'm trying to get the size of my UIView after the orientation changes. In my view controller I implement didRotateFromInterfaceOrientation: and call setNeedsLayout: on my view. In my view's ...
0
votes
1answer
148 views

get UIView height without tabbar

Hi I have a simple uiview embed in a tabbar if I print the following: NSLog(@"%f",self.view.frame.size.height); I get "460.0" that looks like the height for the view without the status bar. What ...
0
votes
0answers
119 views

UIView frame uses incorrect dimensions until device is rotated

I have an iPad application with a naked UIView called playArea nested inside my application's root view, and I have a few smaller views animating around inside the playArea view. I want these smaller ...
2
votes
1answer
391 views

On iOS, can changing a UIView object's frame and center alter its internal coordinate system?

On iOS, if we change a view's frame, we change its bounds, and if we change its bounds, we change its frame. But we can change the internal coordinate system of a view by: CGRect b = v.bounds; // ...
0
votes
2answers
57 views

UIView resize evenly

I have a uiview subclass that i want to expand evenly. I mean I want the origin point of the view to be in the center, and have the width and height expand the same amount. Right now the origin point ...
1
vote
0answers
83 views

UIView subclass won't update

I have a custom uiview that i am trying to update the frame size. I do it like this in a method once it is clicked. The method is called, and the frame value changes, however on the screen nothing ...
0
votes
3answers
988 views

Cannot change UIView frame size

I have a custom uiview that i am trying to update the frame size. I do it like this in a method once it is clicked. The method is called, and the frame value changes, however on the screen nothing ...
1
vote
1answer
264 views

iphone UIView how to render a layer at a specific point?

I'm creating a pdf by hand and need to render a few images within a view. The images have their frames defined in a template nib file. However, I cannot seem to find a good way to render these images ...
1
vote
3answers
1k views

Scale a UIView Horizontally

I'm trying to scale a view Horizontally but i'm not getting the results i expected. view.bounds = CGRectMake(view.bounds.origin.x, view.bounds.origin.y , view.bounds.size.width * scaleX, ...
-1
votes
1answer
362 views

Can I set frame for UIView after adding subviews to that UIView?

I need UIView with dynamic size (it can containg 1 or 2 labels) and I do something like this: float nextY = 0.0f; float labelHeight = 20.0f; UIView *tempView = [[UIView alloc] ...
1
vote
3answers
1k views

the frame.origin.y change on when I change UIVIew's bounds.size.height

(my english is not very well LOL) i defined a UIView object as a subview, when i change the subview.bounds.size.height, the subview.frame.origin.y changed, is there something wrong in my code? here ...
2
votes
1answer
62 views

How to use frame size in minus for UIView iphone?

I have one critical doubt. I have set a frame size in minus for UIView. Example (-250,0,300,400) in Landscape mode iPhone. Now, my doubt is if i submit this app to App Store with this value they will ...
0
votes
1answer
1k views

setting new frame after transform objective-c

I have a problem with setting new frame to uiview object. here is my code: UIImageView *blockImage=[[UIImageView alloc] initWithFrame:CGRectMake(0, [y doubleValue], self.view.frame.size.width, 86)]; ...
2
votes
2answers
3k views

Animating frame change of UIView is not smooth, results in a bouncy effect

I am trying to animate the frame change of an UIView where both the origin and the size changes. The animation doesn't look smooth and has got a bouncy effect. I am using the following code to do that ...
2
votes
1answer
982 views

why might layoutSubviews NOT automatically be called on a view when its frame is set?

I have a view. It is part of a large and complex project. When the frame of my view is set, layoutSubviews is not automatically called. Playing around with this, I tried putting the following ...
0
votes
1answer
45 views

Any way to get the frame of a UIObject from a different orientation?

I have a piano UIView, made of Key subviews. The keys are assigned their frames relative to the frame of the piano. This works fine if I stay in portrait mode. But if I start in landscape mode, the ...
1
vote
1answer
283 views

make UIView bigger than its parent view

I'm making an iPad app and I have a UIView structure as follows: ViewA (parent) --> ViewB (subview to ViewA) --> ViewC (subview to ViewB) ViewA is the same size as the screen. ViewB is about half ...
0
votes
2answers
1k views

How to get frame size after autoresize is done

I wonder, how and when (viewDidLoad, viewWillAppear, viewDidAppear) can I get a UIViews frame size that was autoresized to fit its partent view?
1
vote
1answer
1k views

Adjust frame of UIView after loading it from IB

Update: cause of the issue was found, see below. I'm feeling a little embarrassed here since the answer to my question is probably dead simple, but I've been struggling with this piece of code for ...
11
votes
2answers
5k views

Why am I having to manually set my view's frame in viewDidLoad?

I have a pretty basic setup with a UINavigationController inside a UITabBarController. I'm wanting to programmatically layout the view of the rootViewController of that navcontroller, but when I look ...
0
votes
2answers
3k views

UITableView: changing footer view's size programmatically doesn't work

My table view's footer is a view that shows some tweets from a user, so I do not know its height until I got the tweets, I created a FooterViewController that has a method refreshTweets, I add it in ...
3
votes
1answer
3k views

UIView frame change Notification

Is there any notification when frame or bounds of UIView changes? Whenever frame of a UIView changes, I need to calculate and set the frame of its custom subview so that it aspect fits in the ...
5
votes
1answer
536 views

Animate embedded UIWebView frame property

after a long search with no results, maybe someone knows an answer to the following problem: I have a UIView which contains a UIWebView as a subview. The UIView is just a wrapper, so that I can place ...
1
vote
4answers
580 views

Custom UIView with smaller bounds than frame

Is it possible to create a custom uiview (loaded from a nib) with bounds smaller than the frame. So I would like to show a part of the frame/view. On a button press I want to slide the bounds to the ...
1
vote
2answers
1k views

UIview core animation - rotate and setFrame at the same time

Hy, I my application I want to animate an UIView by changing it's position and rotation at the same time. The issue is that sometimes the animation is changing the width and height of the UIView. ...
41
votes
3answers
27k views

iOS Programming: Frame, Bounds and Center

I would like to know how to use these properties in the right manner. As I Understand, frame can be used from the container of the view I am creating. It sets the view position relative to the ...
15
votes
4answers
17k views

How to get the actual [UIScreen mainScreen] frame size?

I'm a bit annoyed. I have an app with the statusbar visible in the main window. Since I would like to setup my views and their frame sizes dynamically (perhaps the status bar takes up 40 pixels during ...
0
votes
2answers
1k views

Adding a view controller's view as a subview changes it's frame?

SomeViewController *someVC = [[SomeViewController alloc] initWithNibName:@"SomeViewController" bundle:nil]; self.someViewController = someVC; [someVC release]; NSLog(@"height before ...
0
votes
1answer
491 views

Question about bounds/frame of custom class derived from UIView

I have a class derived from UIView, it represents a square area(280x280) over which objects will be drawn, but somehow only the upper portion(280x187) was drawn. I checked the bounds and frame within ...
1
vote
0answers
267 views

resize imageView on UIButton while moving

In my application I have an overview of objects. Each object is a UIButton, which has its own UIImage (button.imageView). The user can drag objects around. Thereby, objects in the upper part of the ...
0
votes
3answers
612 views

frame size and coordinates off (objective-c, ipad)

Supposedly this is a 10 by 10 square 100 pixels on the x axis from the origin and 100 pixels on the y axis from the origin (origin being the top left corner) However it quite clearly wrong. Writing ...

1 2