0
votes
1answer
20 views

UIViewController not passing touches to other Views

I have an overlay view (covering the entire screen), I can receive touches but it isn't passing them down the responder chain. I add the subview like this: UIWindow *mainWindow = [[UIApplication ...
-1
votes
2answers
36 views

how to hide any UIView after applying setFrame property

I have view which add as subView in View in view did load method it works fine but after setFrame property of that view in method then if i hide that view then it does not hide,i think due to ...
0
votes
2answers
49 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 ...
1
vote
1answer
68 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
48 views

Not updating UIView of subView?

I have already posted " HERe" . and Here actually What I need to Deserve If I put this part of code [self loadLocationView] in UIButton and ViewDidLoad method , It works fine here. but whenever I ...
0
votes
0answers
50 views

Objective C - Constraint Errors When Fixing Subview Size to Superview

Apologies for the length of this question, but it's a hard one to express. I'm attempting to create a generic UIView subclass which acts as an overlay, filling whatever superview is given. This ...
0
votes
5answers
44 views

Subview isn't positioned correctly

I am adding a UIDatepicker to a UIViewController, which is the rootview of a UINavigationController, and I use this code to position the Datepicker at the bottom of the screen. UIDatePicker *picker = ...
0
votes
0answers
42 views

ios - Position of subview is returning to default when update UILabel of main view

I`ve created a subview containing a UIPickerView that slides on the main view occupying half of the screen. When the user selects a value in the picker I update a UILabel that is located in the main ...
0
votes
2answers
30 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
1answer
28 views

Does adding a subview also add that view's subviews?

Say I have a custom UIImageView with several subviews. In a UIViewController, if I create the custom imageView and add it as a subview to self.view, does that mean all the custom view's subviews will ...
0
votes
1answer
77 views

Can't display a subview fullscreen size and landscape

I'm adding a subview to a view controller, whose dimensions are 1024(W) x 768(H). My app is set to support only landscape in the plist, and yet my subview will always display in portrait orientation, ...
1
vote
2answers
607 views

Cannot put a google maps GMSMapView in a subview of main main view?

I'm struggling with this problem! I want to add a google maps GMSMapView in a UIView that is only a portion of the main UIView of my ViewController. It should be simple... I created with the ...
0
votes
2answers
127 views

iOS prevent subview of tableview from scrolling with tableview

I have added a subview to my tableview and when ever the user scrolls the tableview, the subview scrolls with it. How do I prevent this? I know it's probably along the lines of not adding the view to ...
0
votes
0answers
98 views

UIView in wrong place when added with addsubview

So I have this code to populate a UIView(placeholderTable) on a scrollview: [self clearViews]; if (thingInfo) { CreatorEntry* creatorView = nil; NSArray *xib = [[NSBundle mainBundle] ...
0
votes
1answer
58 views

How to add UIViewController as target for a programmatically added subview like in IB

When adding UIViews in Xcode's interface builder you can use Ctrl+drag to create a target-action to the UIViewController that holds that view. You can also do that to any subviews you add using IB. ...
0
votes
2answers
180 views

Gestures to subviews & MKMapView in iOS - basic iOS

I have a following setup: mainViewController OverlayView - UIView mapView - MKMapView My OverlayView is shown over mapView and responds to UIPanGestureRecognizer Now because OverlayView ...
0
votes
2answers
277 views

Scale UIView and all its children

I have an UIView with around 50 UIButtons. All button positions were given in pixels, relative to the left upper corner of my main UIView. All (background) images used in the view are available in ...
0
votes
1answer
46 views

Details on rotation and custom view objects

I have setup a custom view with two subviews and a button. I am trying to understand CGRect better and work out what should be used for heights/widths and how to center items correctly. I imagine that ...
-5
votes
1answer
232 views

ios how can get the list of subview on view? [closed]

Any of you knows how can I can get the list of subviews on view?. there is a way to get the list into in array? NSMutableArray *subviews= .... //all my subviews
0
votes
1answer
186 views

Subview disappears with auto layout

I just added a UIView as subview to the main UIView on interface builder (basic single view application). Without setting any constraints, my subview disappears. subview's frame = (0 0; 320 0); Why ...
0
votes
0answers
67 views

how to set the priority response of SubView in UIView

in ViewController: - (void)viewDidLoad { [super viewDidLoad]; NSArray *array = [[NSArray alloc]initWithObjects:@"title1",@"title2",@"title3", nil]; self.scrollTabControl = ...
0
votes
2answers
38 views

Instantiate View behind current ViewController

I want to instantiate a viewController and place it behind the currently shown view. Then move the original view's fram to reveal the view behind it. I CANNOT create the bottom view first and add ...
0
votes
2answers
102 views

Adding a `UIView` as a subview is initially slow

In my UIViewController named MainViewController, I have a reference to another UIViewController named SubViewController. It is defined as follows: @class SubViewController; @interface ...
0
votes
1answer
53 views

Buttons on UIView semitransparent are not visible

I have a UIView with some parts semi-transparent (alpha <1.0) and other opaque. I want to put buttons opaque as subview and I noticed that the parts they become translucent buttons also, while in ...
1
vote
1answer
51 views

check condition doesn't work and returning unrecognized selector

The "if" condition works at the first loop but it doesn't work at the second loop i dont understand why it doesn't want to check my condition at the second loop and why does it only work at the first ...
1
vote
1answer
35 views

How to draw into a subview with Quartz2D

What I did earlier: Created a new project in XCode to test out Quartz2D. Created an UIView, overwrote drawRect and made some graphics with it. What I want to do: Integrate this UIView in a bigger ...
0
votes
0answers
90 views

UIView autoresizesSubviews animation issue

I want to add a custom Progress HUD to my application. So I created an overlay view, an HUD view and several UI elements (progress indicator, label, progress bar). Now I wanted my HUD to "fly in". So ...
0
votes
0answers
38 views

After Copying text from UITextView present in an UIView , UITextView is changed to UIWebDocumentView?

I have placed UITextView, UIButton and UIImageView in an UIView. If I log UIView Subviews its shows all the three subviews correctly. But after selecting and copying text from UITextView, the logged ...
1
vote
1answer
96 views

Subview displays wrong

I've made a project and implemented the folder project and now I've set up a subview which is displayed aboce the folder like on the picture. On the popup there's a image and I would like to do it ...
0
votes
1answer
117 views

Determining if a point in a view is within a subviews bounds

Suppose I have a UIView parentView and a subview childView that is rotated at some unknown angle relative to parentView. What is the most efficient way to determine if a point within parentView (I ...
0
votes
1answer
66 views

How can I constrain a subview so that it cannot be dragged outside of it's parent view's bounds. (iOS)

How to constrain the position of a subview within its parent view. I have a subview within a UIView. The subview can be dragged via gesture recognizer. How can I constrain the subview so that it ...
1
vote
1answer
211 views

Add Subview above mainviews layer

I am having trouble adding a subview above the CALayer of its parent view. I tried to attach an image to show what i mean but i dont have enough reputation so here is a link to the image: ...
2
votes
2answers
2k views

Bringing a subview to be in front of all other views

I am working on integrating an ad provider into my app currently. I wish to place a fading message in front of the ad when the ad displays but have been completely unsuccessful. I made a function ...
0
votes
1answer
267 views

iPhone iOS 6 - Dismissing a subview crashes

I can't quite figure out what's going on but I have a view that displays a subview when a users selects a button. This subview then also has a button the user can select to cancel and remove this ...
0
votes
2answers
68 views

How do you perform an action on only NSObjects of a certain subclass in a UIView? [closed]

I have a UIView that has UILabels, UISliders, UITextboxes, etc. in it. I want to perform an action on just the sliders. How is this done? Currently, I have int count = 0; for (UIView *subview in ...
0
votes
1answer
178 views

Why does the view property of a UIViewController doesn't autoresize the containerView?

I am using containerView. Many things are strange about the containerView. One of the strange thing is that the type of the view is just UIView. So, what's the different between this view and all the ...
0
votes
2answers
283 views

Adding a UIScrollView to subview does not scroll

I have a view controller with a button. When the button is pressed, I want to add a subview which contains a scrollview. Right now my code displays the subview and scrolls fine as long as I don't add ...
0
votes
0answers
112 views

Adding a UIScrollView to subview

I have a view controller with a button. When the button is pressed, I want to add a subview which contains a scrollview. The current code I have displays the subview and scrolls fine as long as I ...
0
votes
1answer
197 views

send subview to the back

I know of a function that brings a view to the front. [self.view bringSubviewToFront:myView]; I am wondering if there is a function that sends a subview to the back.
0
votes
0answers
56 views

Slide left and right between subviews

I have a view controller with 3 subviews inside the self.view. I would like to to do a slide between the views and also to do it that when I'm moving from one to another I would be able to see the ...
2
votes
1answer
323 views

Adding a UIView class outside ViewController class to show subview

I have been check many close answers here, no one can solve my stupid problem.. My problem is: I have 2 classes, UIViewController classA and UIView classB. A button(classA) trigger to ...
0
votes
1answer
58 views

Automatic displace subviews in UIView

I have 3 subviews subView1,subView2,subView3. subView1 has dynamic size. subView2 and subView3 have fixed size. How to automatic displace subView2 and subView3 according to subView1 with standart ...
2
votes
2answers
127 views

SubViews not getting removed

Can someone tell me why this code isn't removing the subview that's being animated? The views are stacking up and the second time I dismiss the view, it won't animate and there are now two instances ...
1
vote
1answer
232 views

Big Subview to Fit in Another Small Subview

Im trying to create a secondary view to my main view. This subview needs to be of small height and it needs to fit another big UIView with a label in it. Problem is that when I'm using UIView ...
0
votes
1answer
66 views

How to reload the data that will be displayed on one view

One view that is a subview of one view controller. And this view will show some data that are stored on one plist file. However, this plist file will be changed on next view controller. When the ...
0
votes
1answer
261 views

get position of label from main view

i have a UILabel (name : lbl) and a UIView , except main view (name : myView) i added my label to myView as subview now ! i want to get the position of the label in main view ! not in myView this ...
0
votes
0answers
73 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
2answers
481 views

Subview behind parent view within a ViewController?

Is it possible to display a sub-view behind the parent view? Obviously you could do this if the views were siblings; my views however are part of a ViewController hierarchy, and as far as I can tell, ...
0
votes
1answer
99 views

Adding a view to subview crashes my application

When i add a subview it crashes my application. Heres what happens: View did load calls a method in another class, that class then calls sortDataIntoSubs in the original class. That then tries to ...
0
votes
1answer
282 views

How to perform a segue from a programmed UIButton inside a subview?

Let's say I have a UIViewController that contains a subviewed UIView that pops up programmatically. This UIView is all made programmatically (is not in the storyboard) and contains a UIButton, from ...

1 2 3 4