Tagged Questions
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 ...
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 ...
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
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
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 ...
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 ...
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 ...
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" ...
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];
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 ...