UIStoryboardSegue is the Cocoa Touch class for segues used in storyboards in iOS 5.0 and later. Segues represent the relationship between two different scenes (i.e. view controllers) on a storyboard, generally used for facilitating the transition between two scenes.

learn more… | top users | synonyms

0
votes
0answers
14 views

Prevent status bar hide when presenting modal viewcontroller ios6

I'm trying to present simple UIViewController modally by using segue. after view controller is presented status bar is getting hidden, how to prevent status bar getting hidden ? i have one solution, ...
0
votes
0answers
13 views

passing array to a tabelvew through segue

I have an app that shows a tablieview controller on startup, then its pushes to a viewcontroller where I type in a label and hit a button. When that button is clicked, it pops me back to the tableview ...
-3
votes
1answer
61 views

“ unrecognized selector sent to instance 0x1f5ea840” when passing values from one ViewController to next in Objective C

I'm getting this error when passing values from one viewcontroller to the next: "unrecognized selector sent to instance 0x1f5ea840" "'NSInvalidArgumentException', reason: '-[UIViewController ...
0
votes
2answers
57 views

is it possible to segue from a UITableViewCell on a UIView to another view

Xcode 4.6.1 iOS 6 using storyboards My problem is this I have a UITableView with dynamic prototype cells on a UIView in a UIViewController (that is itself embedded in a navigation controller) and ...
0
votes
0answers
20 views

how to update embedded storyboard views from unwind segue

I have two embedded views in a combined uiview controller. They are passed a user object when the prepareforsegue method is called. This looks like this: -(void)prepareForSegue:(UIStoryboardSegue ...
-2
votes
0answers
29 views

How make this view? [closed]

I would like to get a similar effect with the image. I'm using storyboard. wanted to open a window on top of the view and leaves with opacity in background. image exaple: ...
0
votes
0answers
6 views

pass data to tableViewCell

I`m trying to pass multiple data from a pickeView to a tableView. I was able to send the complete message out of the pickerView to a Label on my DetailView. Now i would like to send this message to ...
0
votes
0answers
12 views

Navigation and Tab Bar combination

I have an app in which I have 4 sets of controllers accessable through a Tab Bar controller. Each of these sets contains a Map in a View controller and a Table View Controller. I segue between the ...
0
votes
0answers
30 views

Storyboards: UITableView and UIViewController combined with tabs

I have an iPhone application with a Storyboard, based on The Elements sample app. I am trying to create a navController which contains a three tab tabbar. Two tabs will go to a tableview and then to a ...
1
vote
0answers
25 views

How to PrepareforSegue for multiple objects : UIImageView and audiofile

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ([[segue identifier] isEqualToString:@"showDetail"]) { NSIndexPath *selectedIndexPath = [[self.collectionView ...
2
votes
2answers
62 views
+50

Call segue from subview generated by iCarousel

I have a view controller (News View Controller in the image) and it loads a iCarousel with dynamic subviews, it works fine, but the problem is that i want to perform a segue when the user press a ...
1
vote
0answers
21 views

Cleanup resources after segue

I have a timer in a main controller that updates info on the main view every so often. I have a segue to a detailed view. I want the detailed view to continue to update based on the main views ...
0
votes
0answers
26 views

Modal unwind segue not working with apple's MutlipleDetailViews

I am using Apple's multiple detail views example to set up an iPad split view controller app with a master controller - a tab view each tab containing a table view... However in each of these tab ...
0
votes
0answers
27 views

app is showing 3 tab in Simulator & iphone & only 2 tabs in Ipad

I am using storyboard , i am updating my existing app , i have added a third tabview to the existing 2 tabviews, although i fear that there is a problem somewhere , when i ran the application on the ...
0
votes
0answers
39 views

How can I refresh a tableview after a segue occurs?

I have a button placed inside of a view controller that triggers a segue. After my data (in this case, pickerview data) is passed from my view controller to a tableview via the segue, I'd like to ...

1 2 3 4 5 28
15 30 50 per page