Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
348 views

(iphone) how to set view.center when detaching a view from scroll view and adding it to another view?

I'd like to move a view from a scrollview to a uiview. I'm having trouble changing it's center(or frame) so that it remains in the same position in screen (but in a different view, possibly the ...
3
votes
2answers
2k views

superview and parentviewcontroller nil after adding a subview

I think I'm missing something fundamental and so I want to ask the community for some help. I'm building an app based around a basic iPhone Utility Application. My MainView and FlipsideView share some ...
2
votes
2answers
435 views

self.view / super.view

what's the difference between [self.view addSubview:view1]; and [super.view addSubview:view1]; Thank You!! Franhu
1
vote
2answers
43 views

NSView - get superview hierarchy

Is there a simple way to walk back up the NSView hierarchy (superview of superview of superview of nsview) to the main window or a point in between? Thanks
1
vote
0answers
57 views

Not able to call method in superview (although working in other part of app)

I've got a really annoying issue at the moment while trying to create an overlay to provide a greyed out interface when searching and then when it's touched dismiss it. I've adapted some code from ...
1
vote
1answer
94 views

NSView remove some subviews from superview

I have a ad layout program which builds pages (NSView class Page) and on each page places margins and gutters (more NSViews) and then ads (NSView class Ad). The app auto places ads from a database ...
1
vote
1answer
97 views

NSView: drag subview from superview to another NSView

I have an app that lays out pages for a magazine. The app lays out pages (NSViews of a class called Page) of a magazine on a NSView called MasterPage (which itself is the contentView of an ...
1
vote
5answers
364 views

removeFromSuperview causes my app to crash

I'm sure this is some stupid mistake, but i'm trying for the past hour to remove a subview from my superview without any success. On my first view i'm having UIViewController *helpView = ...
1
vote
3answers
440 views

How to update Superview from its Subview in iPad?

I have a UISegmentedController i have 3 UIViewControllers Like photos,frames,gallery. I add those 3 Views in Superview Using 'addSubView'. In frames view i have added a subview that name as EditView. ...
1
vote
1answer
251 views

(iphone) set subview's frame outside of superview's bound?

I noticed that I can place subview outside of superview's bound (either partly or fully). I wonder if that's acceptable, since it seems to be abnormal in usual iphone view programming. Thank you.
1
vote
2answers
3k views

create a view programmatically with frame set to superview's frame?

I have a navigation based application where I place my custom views in the navigation view. First, I wanna know how to get the "navigation view"'s frame so that I can place my custom view on it ...
1
vote
5answers
2k views

iPhone: calling a parent/super method from a subview

hope someone can help me on this as been stuck for hours. I am trying to make a kind of picture book. I have a view which is my container and I add subviews to that by using addsubview. On the ...
1
vote
1answer
647 views

Using navigation controller of superview

I've made a custom view to which I add a custom button. This custom view goes as a subview to yet another view (Kal calendar for iphone) that I push into a navigation controller. Now the button in my ...
0
votes
1answer
25 views

Reload date from superview

I've got two views, view1 calls : [self.view addSubview:view2.view]; then views2 calls: [self.view removeFromSuperview]; and I want to reload data in view1 when view1 reappear but I can't call ...
0
votes
1answer
25 views

Changing an imageview as a subview from one imageview to anotherone

I am creating an app, in which I have two small imageview (using have of screen each) One of this views has a uiimageview as a subview, I need to change this view to be a subview of the ...
0
votes
1answer
45 views

How do I call a view controller method from another class in iOS?

I have a toolbar object that inherits from UIView and is a subview of "CanvasView" on the bottom of the screen on an iPad app. Basically I have buttons on this subview that should draw an image onto ...
0
votes
1answer
43 views

How to make a delegate object accessible throughout a ViewController

I'm trying to get an instance of my AppDelegate accessible to all methods in each ViewController that I have. If I try to declare it with other class variables I get Initializer Element is not a ...
0
votes
1answer
100 views

EXC_BAD_ACCESS when remove from superview

My project using ARC, so I can't use retain nor release, in ViewController A, I init ViewController B and add its view as a subview: ViewControllerB *viewB = [[ViewControllerB alloc] init]; ...
0
votes
2answers
190 views

ios superview and subview

I have a superview and I add a subview to make a selection. In the superview (main view) I do the following: [self.view addSubview:cityViewController.view]; In the cityView, when I have done ...
0
votes
1answer
57 views

Sending info from UITableView to SuperView

I have a UITableViewController that I pragmatically call into my superview when needed. When I tap a table view I want the info to be placed in a UITextField. now I can get it to log correctly from ...
0
votes
1answer
77 views

Getting mouse down event on superview

I have an NSScrollView and its document view is an NSView subview titled MasterPage. On MasterPage I have a bunch (depending on user input) of subviews (from a class called Page).They are laid out in ...
0
votes
2answers
62 views

In iPhone programming, should a subview change its own frame and center or should a superview change them?

I need the user to be able to drag a subview across the screen to change the subview's position. I know that it is possible to do it either way, but is one way preferred? And why?
0
votes
1answer
44 views

After reopening app, UIToolbar superview takes up whole view

I have a UIToolbar setup in a superview on the bottom of my UITableView that is part of a UINavigationController. It works fine when I'm using the app; however, when I close (send to background ...
0
votes
3answers
175 views

Disable touch events on Superview only?

I have a subview on the screen that is loaded from a XIB, I need to disable touch events ONLY on its superview while not touching the subview in the end. How would I do this? Also, I am using iOS. ...
0
votes
1answer
300 views

Superview ignores UserInteractionEnabled = NO?

I have a subview thats goes onto the screen animated, and when it is on the screen, I want the superview (in my case, the view in the background), to ignore touch events. I tried everything but it ...
0
votes
0answers
60 views

How can I call reloadData on a superview's UITableView from its subview without using a delegate?

I have a subview that updates the datasource of the superview's UITableView. I want to reload the data once the subview is removed from superview. How can I do this without using a delegate?
0
votes
1answer
108 views

What is called when removing a view from its superview?

Imagine I have a view controller called blueView and another called greenView. I then add greenView.view as a subview of blueView.view. Now suppose that after some user interaction, I'd like to remove ...
0
votes
1answer
158 views

Tell Superview to ignore touch events?

I am adding a subview to my superview and I need to know how to tell the superview to ignore touch events so that the only view receiving touch events, is the subview. How would this be done? Thanks! ...
0
votes
1answer
421 views

UIPopoverController with UITableView

I have a UIPopoverController that has a UITableView that is populated. I am trying to pass the information from the popovercontroller to the superview. The tableview that is placed in the ...
0
votes
1answer
300 views

How to Make a Subview Fill It's Superview

I can't find the answer here anyway, nor do I see a duplicate question. My code is simple. Given 3 UIView, parent, from and to, remove from from parent and add subview. + add animation but that's ...
0
votes
0answers
61 views

Microsoft Expression Web SuperView

Can I test pages require authorization?
0
votes
1answer
363 views

UIView. How Do I Find the Root SuperView Fast?

I have a random child view in a view hierarchy. What is the best/fastest/cleverest way to get to the root superview? Cheers, Doug
0
votes
0answers
197 views

Replace parent's Tab Bar Controller with child's Tab Bar Controller

I wish multiple Tab Bar Controllers to perform like FourSquare where tab bars of child's views override the tab bars of the parent's view (top view). When I added tab bars into a subview, they are ...
0
votes
1answer
128 views

How to change superview of uiscrollview?

i have a big uiscrollview and topView in ipad viewcontroller, leftscrollView and topView. there are child scrollviews in leftScrollView. i want to move a childscrollview into topView . i couldnt ...
0
votes
1answer
201 views

What is superView in this case? (Tabbar APP)

Here is my didFinishLaunchingWithOptions - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { OneDayViewController *oneDayView = ...
0
votes
0answers
225 views

resize subviews

I have UIScrollView with subview. When I rotate iPad UIScrollView makes autoresize for subview and stretch it perfect. Can I stretch my UIScrollView's subview same way just when I addSubview (resize ...
0
votes
0answers
335 views

SplitViewController with navigationBar in DetailView

I'm fairly new to iOS (started a month ago) but with help of google and this website, I've managed to get my first app published. Thanks are in order... I've now tackled another idea I've had but ...
0
votes
3answers
256 views

Removing buttons from a view

Is there a way to clear the view of all buttons? My code generates buttons every second, and I made a button that I want to clear them all off the screen. When I tried [brick.removeFromSuperview] ...
0
votes
2answers
331 views

How to the grab the highest level Superview in iPhone App?

I want to be able to grab the main UIView for the application. So far, I have been calling [[[self.view superview] superview] superview] to traverse up the chain (or down, depending on how you look ...
0
votes
1answer
71 views

Why there are so many controllers between user defined cell's UITextField and the cell view

I'd like to get parent view of UITextField on my user defined cell. What I've tried is just call superview method and it returns UIView, not a my cell view. So I invoked superview several times. ...
0
votes
1answer
228 views

Hiding a superview without hiding its subviews

generally I know there are workarounds for this, but is there any simple way in the iOS SDK to hide a superview without hiding its subviews? I have a parent view that is a background to a few other ...
0
votes
2answers
381 views

How do you programmatically create a view and set it's frame according to superview? (iphone)

I'm totally lost with superview, loadView(), viewDidLoad(), viewWillAppear(). Eventually, I want to set my controller's frame to superview's bounds and utilize [self.view bounds] at my viewDidLoad(). ...
0
votes
1answer
209 views

Accessing superview ScrollView?

i added some views (every view has its own viewcontroller and nib) to an UIScrollView. How can I access the ScrollView from within the UIViews I've added? self.view.superview doesn't get me the ...
0
votes
1answer
1k views

How to Resize View so That Its Subviews Get Resized Too

My window adds a subview (my root ViewController's view). Such subview is superview of several other subviews. I have just finished an app, and now I want to add an ad. Here's some code: [window ...
0
votes
1answer
576 views

Access UIView after adding it to superview/as a subview

I have a variable sized array of UIImageViews that I'd like to add to my main View. So I loop through the array, adding each UIImageView to the scene as follows: for (UIImageView *nextImageView in ...
0
votes
1answer
379 views

UIView touch location coordinates

What are the coordinates used in UIViews and their corresponding superviews? I have this code which i would like to detect a 'corridor' where the user can touch... similar to this image: This is the ...
0
votes
1answer
243 views

How do I put a SuperView on top of a SubView?

I want to put a SuperView (with a transparent background) on top of my SubView. Is there a way of doing that? Thanks in advance!
0
votes
3answers
1k views

add overlay view over all other views

how do you add an overlay view that goes over everything. eg over a tab bar controller, and a navigation controller? thanks
0
votes
2answers
669 views

How do I get a UIViewController given a UITextView?

I'm handling code in a UITextViewDelegate. Each function there receives the UITextView instance that received the event, for example: - (void)textViewDidBeginEditing:(UITextView*)textView { } ...