The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
44 views

Set size of UIView based on content size

Is it possible to draw something on a UIView, then, after the drawing is completed, resize the view to be the same size as the thing that was previously drawn? For example, if I draw a circle on a ...
0
votes
2answers
58 views

UIScrollView ContentSize.height is 0.0000 by default?

I am trying to create a dynamic form using a UIScrollView, but I noticed when I used a NSLog that my scrollView's contentSize.height = 0.00000 I built the scrollView to the width and height of the ...
0
votes
0answers
53 views

UIScrollView: Autoresizing contained subviews to contentSize?

I have some text fields in a view. My subviews are all autosizing to stretch for width, but anchored to the top - except for the last text field, which is configured to stretch to the bottom of the ...
1
vote
0answers
35 views

What is the best practice to auto resize the “ContentSize” of an UIScrollView?

I have to display a few Views in a UIScrollView and I want it to fit the Subviews. Is there any methods than could help me? It doesn't seem hard for an UIView to resize itself according to its ...
0
votes
1answer
124 views

Set minimum contentsize for UICollectionView

I want to be able to set the minimum height of the content size within a UICollectionView, so I can hide/show a UISearchbar, similar to the way it's done on iBooks. However, I don't want to subclass ...
1
vote
1answer
68 views

Setting contentSizeForViewInPopover property of UINavigationController seems to fail

As the following code seems to show, setting the contentSizeForViewInPopover property of a UINavigationController object seems to fail. Is this behavior as expected? Am I making some error? Thanks. ...
1
vote
0answers
48 views

exc bad access when change the contentSize of popover

I have a button to trigger the popover, and a checkbox on the popover. The state checkbox of the checkbox is bound to a field 'checkboxState' of an NSManagedObject. Here is the scenario: I click ...
0
votes
1answer
68 views

scroll last Cell to top of UITableView

on my last cell is a dynamic textview. With bigger contentSize it will be stay on top of the tableview (to see it, while you fill it on keyboard), but if the textview and also the cell is going to be ...
0
votes
0answers
31 views

ScrollView setContentSize does not responds to different sizes

I created a scrollView in IB and added buttons that exceeds the UIView's frame. The height of the scrollView according to the Inspector is 956. I set a IBOutlet for the scrollView. Whether I set the ...
0
votes
1answer
135 views

UIScrollView horizontal scroll not working

I have the following setup: On top of a UIViewController I've set a UIScrollView with size 320 x 56. Inside the UIScrollView I have a UIView with size 640 x 56. The UIScrollView has the autoresize ...
0
votes
0answers
65 views

Nested UIScrollViews - alwaysBouncesHorizontal

I have one horizontally scrolling UIScrollView inside another, larger horizontally scrolling UIScrollView. When I reach the end of the content in the nested (smaller) scroll view, release, then try to ...
3
votes
1answer
337 views

How to draw the speech bubble as UITextview ContentSize

I draw the speech bubble using UIBezierpath in a UIView class. In the view class contain the UITextView. I am using the following code to used to draw the speech bubble. //BezierPathView.h ...
1
vote
2answers
1k views

UIScrollview content size when orientation changes

I have a scrollview with pagination. In viewDidLoad i check if the current orientation is landscape then i set its contentsize's height 440 if (UIDeviceOrientationIsPortrait([[UIDevice ...
0
votes
0answers
54 views

UIScrollViewContentSize after childView did unload?

I have a problem: I got a UIScrollView with a changeable ContentSize. After a childViewController unloads and this view is the presentviewcontroller again, the height seems to just be 360. Any idears ...
1
vote
2answers
741 views

detect changes to UIWebView's scroll view's contentSize

i'm trying to set a UIView at the bottom of the content of a UIScrollView, do to so i set the view's position to the scrollview's contensize heigth. But my scrollview is a subview of a UIWebView so ...
2
votes
4answers
131 views

Scrolling Issues in IOS

Scroll view did not set content size if I set it using a dynamic variable i.e. scrollView.contentSize=CGSizeMake(320,scrollView.frame.origin.y+120); the scroll view size remains same after calling ...
0
votes
1answer
98 views

Save a view as image in original size

there are many threads about how to save a view as an image. And all of them give the same answer: CGRect rect = [myView bounds]; UIGraphicsBeginImageContextWithOptions(rect.size,YES,[[UIScreen ...
0
votes
1answer
89 views

UIScrollview inside a UIView won't change contentSize

I have got a UIScrollview inside a UIView in the UIStoryBoard. It is connected by an outlet which is working when I try to change the background colour, but when I try to move its frame or size, it ...
0
votes
0answers
83 views

UIWebView: Content get bigger when reload

I'm having problem of UIWebView: I create a webview at the ViewDidLoad, and a button to reload the page, and everytime I click the webview download a new picture but the height get longer and longer ...
4
votes
2answers
536 views

UITableView in storyboard not updating content size on rotation

I'm working on project targeted for iOS 6 that leverages storyboards and auto layout. In the storyboard there are many places where a UITableView is added as a subview to a view controllers view. This ...
1
vote
3answers
294 views

UIScrollView not scrolling off screen?

I have an app in which a UIScrollView of the dimensions 1056x96 on top of a screen which is 480x320 (it is in landscape.) It contains 9 UIBUttons. It definitely is able to scroll, as when I set ...
0
votes
2answers
173 views

contentSizeForViewInPopover different height in IOS4 and IOS5

Hello, I have UITableView with static content embedded in UIScrollView so I have just set size in popover: - (CGSize)contentSizeForViewInPopover { return CGSizeMake(600, 670); } but, I ...
0
votes
1answer
632 views

Cannot increase UIScrollView contentSize in UITableView

My code creates a basic UITableView base class programmatically. @interface BaseTableViewController : UIViewController <UITableViewDataSource, UITableViewDelegate> { UITableView *tableView; ...
1
vote
3answers
179 views

EDIT: UITextView Label is Cut in Half (Horizontally)

I need help with this peculiar problem. I have a multiple choice question app and I have the choices as UITextview. Sometimes, choice D gets cut in half for whatever reason. Screenshot: Not sure ...
0
votes
1answer
646 views

iOS - UIScrollView content size set to zero

Basically my question would really be, would there be a problem if I set the content size width or height of a scroll view to zero (0). For example: scrollView.contentSize = CGSizeMake(100,0); ...
2
votes
2answers
4k views

Change contentSizeForViewInPopover on navigationController push on iOS

I have a UIPopoverController with navigationController and bunch of subviews. The size of the popover is set just before it's shown like this: [self.myPopover setPopoverContentSize:CGSizeMake(320, ...
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 ...
4
votes
2answers
5k views

Content size issue for UITableView in UIscrollView

I actually create a scroll view with a table view inside it with interface builder. I set the content size of my scroll view with: scrollView.contentSize = CGSizeMake(self.view.frame.size.width, ...
1
vote
2answers
2k views

Is there a maximum for UIScrollView contentSize?

I'm developing a small iPad-app with a Ganttchart which will show Events in the last 25 hours. I have 5 zoom levels each for 1 hour, 30 min, 15 min, 5 min and 1 min. My cells are 30 pix in width. ...
3
votes
3answers
5k views

Set starting point of content size for UIScrollView

How do I set the starting point of a UIScrollView? I would like to add a UIImageView left of the UIScrollView but changing the contentSize only adds scrolling room to the right of the scrollview. How ...
0
votes
0answers
530 views

UIScrollView subview jumps to the top when scrollview reloaded

I've got some problem with a UIScrollView and this is the only problem , disturbs me to submit my application to AppStore,people,please,help! I add a scrollview and pageController in viewDidLoad of ...
3
votes
1answer
961 views

UITextView contentSize.height larger than necessary?

UITextView scrolls even when all the text fits within its frame. It scrolls as if there are two new lines at the bottom of the text, but there aren't. So, its contentSize.height seems to be a couple ...
5
votes
3answers
6k views

UIScrollView adjusts contentOffset when contentSize changes

I am adjusting a detail view controller's state, just before it is pushed on a navigationController: [self.detailViewController detailsForObject:someObject]; [self.navigationController ...
4
votes
1answer
489 views

UIScrollView resets contentSize

Why does a UIScrollView instance reset its contentSize (in my case to the frame, and screen, width) by the time the delegate scrollViewDidEndZooming:(UIScrollView *) aScrollView withView:(UIView *) ...
0
votes
1answer
136 views

Adding hardcoded value to contentSize

I've been trying to make my scrollview correctly fit it's content which includes a label, UIImageView, and textview. The textview sizes dynamically to different text, so I've made the scrollview's ...
0
votes
1answer
3k views

UIWebView content size

I'm working on an app that can retrieve images from the web. Rather than actually download the images, I'm trying to display them in a UIWebView. I really need the images to be a specific size on my ...
1
vote
1answer
1k views

problem with scrollview content size on ipad in landscape

In viewdidload I have this code: [methodPanes setContentSize:CGSizeMake(numberOfPages*methodPanes.frame.size.width, 100)]; Method panes is set relative to the width of self.view. The problem is ...