UIView is an iOS class which is used to display all user interface elements. All UI elements are either subclasses of UIView or are contained within a UIView.
0
votes
0answers
14 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
24 views
Storyboards and programmatically views
I'm totally lost in this issue. I have been working with storyboards, I have created a navigation controller with tableviews and some stuff. There are Services in each row of the tableview and I need ...
1
vote
0answers
19 views
Weird behavior of child view controller's view frame on iphone5
What I'm trying to do is create a view controller, and have its view animate in from the right. The main view controller has a view called viewContainer that will house this view. The weird thing is ...
0
votes
3answers
31 views
Drawing a polygon with one color for stroke, and a different one for fill?
I'm having trouble with drawing some lines that are stroked with a color and then filling their insides (they make a polygon) with another one.
UIColor *houseBorderColor = [UIColor ...
0
votes
1answer
21 views
UIView Subclassing and OOP
I have an app where the model is an array of Menu objects containing information such as title, images, method etc.
I would like to create a scroll view with a list of Menu Views, maybe with picture, ...
0
votes
2answers
40 views
UIView shows 25% of it
I have a map with the MapBox library.
Now i set the background like this:
UIView *background = [[[NSBundle mainBundle] loadNibNamed:@"IGBackgroundView" owner:self options:nil] objectAtIndex:0];
...
0
votes
0answers
22 views
Lost touch when trying to move UIView to another UIView
I am trying to move UIView from UIScrollView to another UIView by using UIPanGestureRecognizer like that:
if ([gestureRecognizer state] == UIGestureRecognizerStateBegan || [gestureRecognizer state] ...
0
votes
1answer
29 views
UIView Rotation Magically Happening
I was given a project that was started by someone else who no longer works here.
I have a UITabBarController which holds some UIViewControllers.
If the application is running on iOS 6, everything runs ...
2
votes
0answers
54 views
Is it mandatory to dismiss a view when it is presented in ios?
I am working on iPad App.
Here I am having different views with different orientations. Among them I am PRESENTING a view on clicking button.
While I am DISMISSING that view i am facing orientation ...
0
votes
1answer
12 views
cocoa touch trying to delay the animation of the uiview before it pops out again
I have a UIView that serves as the container for 2 tableviews. I have two buttons that controls how data is loaded on those tableviews. Basically when 1 button is tapped the uiview slides out to show ...
0
votes
2answers
24 views
Translate UIView by dragging another UIView
Please refer to the image below for the following question: The blue and orange circles you see are UIView's. I would like to be able to drag the blue UIView which has a UIPanGestureRecognizer and ...
2
votes
1answer
11 views
CoreTextView scrollable
I'm using CoreTextView to render some html formatted text into a custom view. I'm trying to learn how it works (and I'm a novice with iOS), so I was playing around with the example provided (which ...
1
vote
1answer
42 views
IOS UIImagePicker in a UIView subview
I am trying to display a UIImagePicker from a programatically generated UIView that's added as a subview of the original view controller. The image picker comes up and so does the camera but the ...
0
votes
1answer
16 views
IOS resize UI after rotation (Is fill parent possible in IOS)
Is it possible to make textfield or other UI to fill screen width? Something like "match_parent" or "fill_parent" in Android.
..
If not, is it a right solution to use ...
0
votes
2answers
41 views
Move a view up so textfield does not disappear behind keyboard
I have a view like you can see over here.
You can see that I have an header image with below a lot of textfields. Only the UITextfields Adres - Postcode - Gemeente - Tel.nr - Email - BTWnr. are ...