Why doesn\'t this UIView layout code work as I want? Background: I have a custom UIView I have in my UIViewController
I have one view who calculates location and reverser geocode to get the zip code. Then it calls another view where I want to display weather results based on that zip code.
I have several UIViewControllers. I would like to use the same UIView subclass (which goes on top of the existing UIViewController\'s view) in all of them. Is this possible using Interface Builder?
I am trying to sub view a viewcontroller\'s view on key window of my application. I need to do it like in such a way that, from the app I will take the keywindow using [[UIApplication sharedApplicatio
I\'m creating an application whose main screen can consist of one of three Scenarios. Let\'s call them A, B, and C.
I have a UIViewController (call it NumberTwo) which I presented as a modal view controller from another UIViewController (call it NumberOne). NumberTwo contains a touchesBegan method which listens for
I have a UITabBarController with three ViewControllers (A, B, and C). In ViewControllerB I have a UIScrollView. The UIScrollView consists of several instances of my PhotoViewController. These PhotoVie
I have a touchesBegan: method which works fine. However I recently added a UIView (a button) to my UIViewController and now the button isn\'t registering taps, however my touchesBegan: method is.
I\'ve written my first app that uses web data for building a custom view. While it is working, I can\'t help but think that maybe it isn\'t quite following the MVC concept (thought I\'m not sure this
I would like to show a modal view but don\'t want to use the standard methods because they don\'t let me animate the subview as I like.