A storyboard is a visual representation of the user interface of an iOS application, showing screens of content and the connections between those screens.
0
votes
1answer
55 views
Drag/pan gestures on a GMSMapView not getting captured after update to SDK 1.3.1
I'm having a strange problem with capturing drag/pan gestures on a GMSMapView through a Gesture Recognizer. This problem surfaced only after updating from GMS 1.2 to 1.3.1, where (quoting the ...
0
votes
1answer
46 views
How to move to second view programatically in ios app?
I have App with single storyboard, and two view in same story board. First one is controlled by ViewController and second one is controlled by View.(Two different class files, one inherits ...
0
votes
1answer
20 views
iOS app: OpenGL Views within Storyboard-based Application
I have been working on an iOS, OpenGL-based app for the past few months. During this time, I have created both the main UIWindow and a single UIView in code, as opposed to using a storyboard. An ...
0
votes
2answers
52 views
how to make UILabel autosize text in storyboard (or interface builder), NOT programatically
Every time I click-and-drag a UILabel to storyboard, and then add text to Text field, the text is cut off, so I then have to click-and-drag the UILabel to stretch it big enough so that the text ...
0
votes
0answers
58 views
Single Line Horizontally scrolling text field using storyboards and Xcode 4.6.1
Title says it all. My goal is to have a text field whose text is changed to display a button push. As the text reaches the end size of the text field, I want it to "chase" the last character entered ...
0
votes
1answer
26 views
How do I add an “add” button to a tab in a uitableviewcontroller within a uitabbarcontroller?
xcode 4.6
using Storyboards
When I drag a Bar Button Item to the navigation bar at the top of one of the UITableViewControllers that are children of the UITabBarController xcode creates a new ...
0
votes
1answer
63 views
awakeFromNib is not called for UITableViewCell object
I have a class that inherits from UITableViewCell, it has a bunch of IBOutlets. I had previously been using this object in a way that reuses the cell and initializes it as it's needed. This method is ...
0
votes
2answers
23 views
iOS Change Story Board
My iPad App has two storyBoards - FirstStoryBoard and SecondStoryBoard
I have a single ViewController
I notice that Under Project > Targets > Summary there is an option for specifying the ...
1
vote
1answer
55 views
why can't I resize my views anymore?
I'm using Xcode 4.6.2, and am having trouble resizing my views.
For instance, I just created a new Storyboard, and dropped one regular UIView on top of another. I went to to change it's top, by ...
0
votes
1answer
91 views
My app requires using instantiateViewControllerWithIdentifier - why?
I have added a Storyboard file to an app that initially had none. For some reason, I could not get my custom UIViewController to display correctly until I added this into ...
0
votes
1answer
87 views
UIView inside UITableView does not show in runtime
I have an UITableViewController with UI in a storyboard file. I have drag-and-dropped an UIView on top of the UITableView. It looks great in Interface Builder, but doesn't show at all in runtime:
...
0
votes
1answer
105 views
prepareForSegue is passing value by Reference to Destination view Controller
I am using storyboard in one of my application and while passing a property from SourceViewController to DestinationViewController in prepareForSegue method the property being passed is passed by ...
0
votes
4answers
541 views
Change Container View Content with Tabs in iOS
I'm trying to make a form that spans three tabs. You can see in the screenshot below where the tabs will be. When the user taps a tab, the Container View should update and show a particular view ...
2
votes
1answer
95 views
Supporting two storyboards
I have an app with a medium-sized storyboard, which is complicated enough for me not to want to mess around with it too much.
I want to copy this storyboard and change the color scheme and let the ...
1
vote
0answers
53 views
Xcode forcing the UIView size to be same as a UIContainerView when running a segue
I have the following view hierarchy in my storyboard
UIViewController
-UIView
--UIContainerView
---UITableViewController
----UITableView
|
push segue
|
﹀
UIViewController
-UIView
...