Questions about the Apple UIStoryboard feature. UIStoryboard is a new screen flow layout mechanism introduced in iOS 5. Storyboards allow a developer to create a conceptual overview of the screens in an app and the connections/flow between them. Storyboards can be used in conjunction with XIB's in ...

learn more… | top users | synonyms

0
votes
3answers
48 views

Custom initialise subview added from storyboard

I have a subclass of UIViewController that I want to add from the storyboard. So I'm using what seems the standard methodology: SubViewController *svc = [self.storyboard ...
0
votes
2answers
46 views

3 programmatically created UIButtons - how to go between 3 UIViewControllers using those buttons with Storyboard?

Playing around with some Objective-C (well, iOS) and have done the following... loaded some UIButtons programmatically into a UIScrollView. That works well. Though I've always just connected ...
0
votes
1answer
35 views

Adding Storyboard to Github project

I have a project from github that does not contain storyboards, but I want to add storyboards to see the product before I run the application in the simulator. Can anyone explain how to add a ...
0
votes
1answer
33 views

xcode storyboard nested table pass array

I have taken a sample script of an app similar to pulse from the internet which is made up of xib files and I have structured it to go into storyboard to make use of horizontal table scrolling. For ...
0
votes
1answer
34 views

Communication between container, delegate protocol not working?

I'm building an iPad app with storyboards. I have a "data page" (view) where I put one big container with a tableview which contains data. then I have 3 small containers above, also with tableviews, ...
0
votes
1answer
18 views

Passing model data to tab bar view controller as a detail controller in iOS

I'm developing a Core Data Master-Detail application. The detail view is a tabbed interface with each tab displaying different aspects of the model object. Therefore, I have a: Master view ...
0
votes
1answer
26 views

How to manually set which storyboard view to show in app delegate

I have an app that wants to log out user whenever application is inactive for a set period of time. It's alot of different views in the app, and i want the app delegate to set loginview as current ...
0
votes
0answers
21 views

UINavigation bar switching position from header to footer - Xcode storyboard

This is driving me crazy, yes i am new to iOS but I dont think this should be this difficult. I added a navigation bar to a ViewController using storyboard as shown in this image ...
0
votes
1answer
35 views

iOS: changing a UILabel text of a modal view programmatically

I have an app that has two screens. In the first screen there's a button that opens the second screen as a modal view via a modal segue, and it has a UILabel. I want this UILabel to have a certain ...
0
votes
0answers
8 views

UICollectionView is reloading after performing Segue

I am using UICOllectionView for loading 4 objects of AVPlayer for playing videos in single view controller. I have used storyboard but problem is that every time i am going back or to next view ...
0
votes
3answers
27 views

what is the correct approach to push or segue a new view from only one cell of a dynamic tableview

IOS 6 , XCode 4.6.2 using storyboards Heres my problem. I have a tableview with 7 cells using dynamic prototype. I would like to segue from the third cell to another tableview (which is going to ...
0
votes
0answers
10 views

Custom UINavigationBar Background image for View in Storyboard

I have the implementation in AppDelegate.m : - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization ...
1
vote
2answers
49 views

Connecting navigation controller through button on Storyboard crashes app

I am using a Storyboard for the first time. Here is a picture: My app is a TabBar application. From the 'Main' screen I have a settings button, which I would like to connect to the ...
0
votes
0answers
23 views

Incorrect Master View Size in storyboard (portrait only)

I have an iPad app designed using storyboard, the MasterViewController simulated metrics are as follows: and the view size as it appears in the size inspector is as follows: when I NSLogged the ...
1
vote
2answers
36 views

Which event is called after the view is shown

I have created a small app with a storyboard. Now, I have created a first view, which should be my splash. I am now searching for the right place to put my work into it. After this work, I would ...
0
votes
2answers
57 views

combine uitextview, uilabel and uiimageview in a scrollable object ios

I need a view that contains (title, image, and details), the details is about a textview. what I need is, to allow scroll to all the view, not just for the texview. in my application, if I disabled ...
0
votes
2answers
28 views

StoryBoard Issue

I have an issue that when I press a button to go to another view controller in a storyboard the system says this: terminating app due to uncaught exception 'NSUnknownKeyException', reason: ...
0
votes
1answer
47 views

XCode Storyboard and UIViewController instantiation

Good afternoon, I have a storyboard configured but I have difficulty with one aspect. I am using a UITableView to recreate a directory structure i.e. folder>subfolder>files. The structure is going ...
1
vote
1answer
78 views

Animate resizing UIView header of UITableView

Basically, I want to replicate the behavior in the login screen in Facebook for iPhone: when an input field is touched, the logo/header view decreases in height to make room for the keyboard. Here I ...
-5
votes
0answers
25 views

Adding a Search Bar to table views non-programatically [closed]

Is there a way to implement a search bar to a table view where the table view has a static number of cells who have their values (titles) set in the storyboard, not in a UIController?
1
vote
1answer
24 views

how to check which view in storyboard are showing

i will like to know which storyboard view are being showed. [self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"menuListViewController"]]; [self ...
0
votes
1answer
39 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
1answer
23 views

Change Storyboard Nav View Controller on app open without noticeable transition.

I have a basic ui navigation view with a table view, when a user selects a name and presses the top bar next button it should go to the main ui navigation view, after this initial setup it should ...
0
votes
3answers
30 views

Depends on internet Connection show a ViewController iOS

I'm making an application with storyboards, the first VC, is a navigationController and automatically shows the next VC that it´s just a login , once the user is logged, is send to a TabBarcontroller ...
0
votes
1answer
9 views

Can one segue identifier be used between two UIViewControllers for multiple UITableView cell data transfer?

I'd just like to confirm my understanding that for every segue identifier, there needs to be a unique segue hookup between two UIViewControllers in Interface Builder. Is this true? Is it possible to ...
0
votes
1answer
46 views

Loading more than one UIViewController to a Container View using Stroyboards, but without push segues / UINavigationController

In my iPad app, I have a settings screen (a UIViewController subclass). The desired behavior is to be like the iPad system settings where there is a UITableView on the left and it loads other ...
0
votes
1answer
32 views

Unwind segue not being triggered

Hello i have a storyboard that has a starting view controller that presents other Modal view controllers. Say view controller A is the startingViewController, and view controller B is the modally ...
1
vote
4answers
63 views

Presenting Modal View Keeps on Failing

I keep getting this warning and no matter what I try I'm not sure how to resolve it. Attempt to present <LoginViewController: 0x1f0b5010> on <ViewController: 0x1dda1670> whose view is not ...
0
votes
0answers
12 views

TableView inside a Cell of a parent TableView

I thought I have a solution, and thanks to all the comments here. I am a few steps forward but: I want to have a TableView inside a Cell of a parent TableView. 1st Try: Putting a UIView and inside ...
0
votes
1answer
13 views

new project uses storyboard from old project

I am creating a new Xcode project from scratch. But when I run the project I always see the view controller/scene from another project (by the same name). Even though the storyboard (ipad storyboard ...
1
vote
2answers
35 views

How to push a viewController before dismissing modal view controller with Storyboards?

While trying out storyboards for one of my projects I came across something for which I don't have a good solution; I have a navigation-based application which shows a UITableViewController. The ...
0
votes
1answer
39 views

UIStoryBoard Navigation Controller disappearing after segue

Reference layout via storyboard: http://i.imgur.com/M7AmdP2.png Reference landing page: http://i.imgur.com/Y3g45uy.png I am trying to use the bottom bar as displayed in picture 2 to control my app. ...
0
votes
1answer
23 views

Handle loading of content then go to different scenes

I have two scenes from where the user can enter information (one is actually scanning a barcode, the other enter the number manually) From there, I want to download information from my backend. ...
1
vote
2answers
43 views

What is the mean of this error?

My application is working very well for first time in the sumilator, when I rerun my app in simulator and press some button, I get this type of error. I am using Local DB, so I thought maybe it is ...
-1
votes
0answers
25 views

Xcode 4.6 beach ball and crash [closed]

when i open xcode , i get a beach ball which spins forever everytime i try to do something in the storyboard. The story board is currently huge. Over 150 screens.Tried upgrading mac mini to a quad ...
0
votes
0answers
28 views

How to display 'cameraIris' Shutter Open effect from middle of the view to out side

Now I need to add cameraIris' Shutter Open effect when switch from one view to another view. I used for navigation transactions as follows, using http://iphonedevwiki.net/index.php/CATransition ...
0
votes
1answer
43 views

iOS Multiple versions of View with single View Controller?

I have an app with a signup screen, which is basically just a form with a bunch of textfields and a few buttons. However, there are several distinct types of users, and some fields are either ...
0
votes
1answer
29 views

I have view controllers in a navigation controller hierarchy, but only want the navigation bar on the first view controller - how do I do this?

I have a main view controller that lists a bunch of items, and when they tap on one of the items it segues them to the next view. However, in the next view, I don't want the navigation bar to be ...
0
votes
1answer
30 views

Pushing new instance of self onto nav controller weirdness

OK, bear with me. I have a storyboard based IOS app that: Framed as a TabBar main navigation. One tab segues to a NavigationController. Fine. In the navigation controller main view I have a ...
1
vote
1answer
25 views

Conveniently convert a View Controller object to Table View Controller during design time (Storyboard)

I know I can just delete the original View Controller and drop a Table View Controller in it's place inside the Storyboard, but this requires that I re-establish the relationships between the before ...
0
votes
1answer
81 views

application didFinishLaunchingWithOptions is called before Storyboards are done loading?

I have an app that implements a Facebook login at startup, using code pretty much exactly similar to this: Facebook Scrumptious Tutorial, except with Storyboards. The basic gist of the code is that ...
0
votes
3answers
108 views

Custom segue to push a specific UIViewController to UINavigationController

I want to create a custom segue that acts in the same way as the standard push segue does when used on UINavigationController view controllers. I've implemented my custom segue: CustomSegue.m ...
1
vote
1answer
42 views

Embed a UIViewController in a NavigationController using segues

I have a viewController that is usually (most often) accessed by using a push segue. This viewController needs to be embedded in a UINavigationController. So typically, this is no problem. The push ...
0
votes
1answer
39 views

What is best practice when NOT using storyboards or nibs?

I've heard Facebook and Google do not use UIStoryboards or nibs because they are difficult to merge – they format all their views programmatically. Are there any resources out there that can provide ...
1
vote
1answer
37 views

Using one storyboard with multiples languages

I want to localize my app in multiple language (like 6 or 7) but i don't want to add as many as storyboard copy. So, for 6 differents languages, I want: One storyboard 6 Localizable.strings In my ...
0
votes
0answers
21 views

PopOverControll not showing the view of a Viewcontroller

I need to display a view controller through the one of the rightbuttonitems as popover. I was getting a black popover with the defined size when the _settingsButtonItem (created programatically) was ...
-1
votes
3answers
94 views

How to call a View Controller programmatically?

I have looked at all the tutorials I can find on this one, and I still don't have the answer. I need to call another view from the code. I am using storyboards. I have changed the view many times ...
1
vote
0answers
55 views

Why is my segue not firing?

After scanning all the threads on this topic, none of the advice has resolved the issue. Strangely enough, this problem only suddenly surfaced for what seems like no apparent reason. It worked fine ...
0
votes
2answers
58 views

How to assign the delegate to the second view controller

In a root view controller, when I click a button, the view controller push to a Category view controller and then it presents a Child view controller. When I selected a row, Child view controller ...
0
votes
1answer
58 views

Rotate UIView in Storyboard with iOS6

I have a UILabel I want rotated 180 degrees, so the text appears upside down. I did some searching and found this question that covers rotations with CGAffineTransformMakeRotation. Is there a way ...

1 2 3 4 5 17