The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
2k views

iOS: Capturing touches on a subview outside the frame of its superview using hitTest:withEvent:

My problem: I have a superview EditView that takes up basically the entire application frame, and a subview MenuView which takes up only the bottom ~20%, and then MenuView contains its own subview ...
2
votes
4answers
953 views

How to Insert View in Superview's View? (iOS)

I have the line of code below... How would I modify it to insert the subview in the superview's view named 'foo'? [[self superview] addSubview:copy3];
2
votes
1answer
51 views

How do I identify a blended layer in iOS?

I am triggering an iOS animation to move some elements around on my screen, and when I do so, an area at the bottom of the screen (away from where I think I'm doing the operation) changes shade ...
2
votes
1answer
139 views

UIButton is nil in MFMessageComposeController on iOS 6.0

I am trying to print the view hierarchy of the application's visible and hidden windows. Here is a part of my code inside a subclass of MFMessageComposeViewController: NSArray *windows = ...
1
vote
2answers
26 views

didReceiveMemoryWarning and re-built instance variable equality checking

I'm going through my iOS app, using "Simulate Memory Warning" as my hammer of justice, and it's causing some unexpected problems (naturally). But this is one problem that has me stumped: objects are ...
1
vote
1answer
409 views

UIView clipToBounds is not stopping a subView receiving touches outside the parent view

I have two UIViews. I'm using one to contain the other so that I can slide one inside the other. I'm encountering an issue where even though a subView is clipped to the bounds of its parent, it is ...
1
vote
0answers
203 views

iOS: Subview common to multiple view controllers is unresponsive

I am using a UIView to show busy/processing clue to User and components in loading view are not responding to user touches. Let me elaborate my problem. I have around 3 UIViewControllers and based on ...
1
vote
1answer
78 views

Managing view hierarchy when opening a document

I have an IOS App that can open a specific type of documents. My App receives the document through: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary ...
0
votes
3answers
564 views

TouchUpInside on UIView with children

I may be missing something here, but... I have a UIView with a few children (a couple of UILabel's and UIImageView). I need to catch an event when the user clicks (taps) anywhere within the parent ...
0
votes
3answers
92 views

UIView inside a UIViewController or better way to do it?

I have a problem on how to properly do a certain kind of action. The image below shows a UIViewController, but the second part of the view is a custom UIView (the one with the profile pic, name and ...
0
votes
2answers
891 views

What type of contents UIViewContentMode mode refers to?

According to the official doc on UIView about the contentMode property: The content mode specifies how the cached bitmap of the view’s layer is adjusted when the view’s bounds change What's defined ...
0
votes
1answer
65 views

How to create Folder like MY Photo app in iphone? [closed]

Dear Friends I want to know is there any Possible to create folder like MY PHOTO app in iPhone? If it is Possible How can i implement it? now i am trying to create. i am using UIScrollView in that ...
0
votes
0answers
35 views

Put UIWebview on top of another

I want to stack two UIWebViews on top of each other in order to be able to draw "on top" of the the underlying view using either canvas or OpenGL. I would like to be able to toggle this view on/off ...
0
votes
1answer
56 views

How can I detect which view is handling my tap?

Somewhere towards the bottom of my view hierarchy, I am implementing a touchesBegan method. It fires on all touches except for single finger taps. This leads me to believe that somewhere higher up ...
0
votes
0answers
22 views

Setting the alpha of a UIView before adding it to a superview

I have two views, a designated superview and a subview. The subview has an alpha value of 0 and has only been initialized and not been added to any superview. After the configuration of my subview I ...
0
votes
1answer
56 views

warning unable to restore previously selected frame - cannot open UITabBarController Modally

I am trying to present a tabBarController modally. I am trying to do that by following code: summaryGraphManager *summary = [[summaryGraphManager alloc] initWithNibName:@"SummaryGraphManager" ...
0
votes
2answers
133 views

- setTransform Not Taking Effect [closed]

I'm trying to rotate a view (myView) and counter-rotate one of its subviews (theSubview), so that it appears that the view is rotating underneath the subview. I'm using this code: CGAffineTransform ...
0
votes
0answers
63 views

Modal view controllers are displayed with a portrait coordinate plane

I am displaying a full screen modal view controller in landscape orientation. The view loaded from the xib is displayed correctly, but when I attempt to add a subview programmatically, it displays the ...
0
votes
0answers
53 views

How do I Insert View in Superview's View? (iOS) [duplicate]

Possible Duplicate: How to Insert View in Superview's View? (iOS) I have the line of code below... How would I modify it to insert the subview "mySubview" in a UIView named "myView" ...