-2
votes
1answer
26 views
Calling the same Viewcontroller file from within the file itself.
The following segment of code opens a new page "ScreenA" with a animation motion:
ScreenA *Acca = [ScreenA alloc];
[UIView beginAnimations:@"flipping view" context:nil];
…
0
votes
4answers
68 views
Adding A Visual Timer To A View, iPhone
Hello all,
I have a view (splash screen) which displays for two minutes:
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
[viewController showSplash];
}
- (void)showSplash // …
0
votes
1answer
97 views
iPhone SDK: I need a Subview initialized when loading, hidden when done
My Setup:
In my iPhone app, I have a loading View (which is an UIImageView itself) and two subviews on the loading View, an UIIndicatorView and an UILabel. To view it, I call the [self.view …
1
vote
2answers
26 views
Adding UITableView to subview when searchbar is being edited
I have a MKMapView with annotations on it and it works fine. I have a search bar as part of my navigation bar. When a user clicks on the search bar field I wanted to bring up a UITableView in code. I …
0
votes
1answer
79 views
iPhone SDK: repeat subviews
I have one UIView, which I'm using as my main view, and I want to repeat the subview across the screen. How exactly can I do this?
0
votes
1answer
66 views
Recursive adding self.view to self.view?
I need add to my active main view a new subview. And this subview should be with all content which placed on main view. Subview has a frame = view.frame / 2.
I trying implement some solutions …
0
votes
2answers
73 views
How can a superview interecept a touch sequence before any of its subviews?
I have a view hierarchy that is layed out as follows:
parentView
scrollView
contentViewA
containerView
contentViewB
contentViewC
I want contentViewB to respond to …
0
votes
0answers
108 views
Adding subview to MKMapView that’s above the map but below the annotation views?
For an app I'm building, I have a custom "old map" effect PNG that I'd like to overlay on the MKMapView view. Unfortunately, neither way I've tried to do this is exactly right:
Add a subview to the …
0
votes
3answers
148 views
UIView Hell. Hiding one subview hides them all.
I am apparently in some swirling UIView hell zone at the moment where up is down sibling is parent and my brain is completely fried.
Here's the deal. Really, really simple. I have a container view …
0
votes
4answers
231 views
UIView. What is the correct way to remove a subview from a view hierarchy and nuke it
I have a parent UIView with a number of subviews. Periodically I need to remove a subview and completely remove it from the system. What is the correct way to do this? I tried this:
UIView *v = …
1
vote
2answers
157 views
How to resize other subviews and parent view when one subview size changes
I have a view which is similar to mail app. I have a scroll view and in that many other subviews. When the user clicks on any textview, it expands to show the text in it. e.g. "to" field in mail. I …
0
votes
1answer
38 views
How set a UIView subview larger then its parent superview in IB?
Can someone please reveal the secret handshake in IB to allow a UIView subview to exceed the bounds of its parent superview?
Cheers,
Doug
0
votes
2answers
77 views
iPhone - insertSubview makes ObjectAlloc jump
Whenever I add a new viewController my ObjectAlloc jumps up really high and never comes back down. Even after calling removeFromSuperview. Is this normal?
if((UIButton *) sender == gameArcadeBtn) {
…
1
vote
3answers
214 views
Change the z-order of subviews on the iPhone
I'm developing a game. I'm using about 150 UIImageView to hold the graphics. I'm simulating a 3D enviroment, so i would like to change the z-order (how close is an object to the camera).
I know …
0
votes
2answers
303 views
uitableview subview : why this uilabel is not visible?
I want to display a label showing a number in each cell of the tableview but the label is only visible when I click on a row (when the cell is highlited)
- (UITableViewCell *)tableView:(UITableView …
