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 ...
0
votes
0answers
16 views
Page curl in tabbed application (curl all but tab bar)
Is it possible in a tabbed application to not curl the tab bar? Ie I have a tabbed application with a map tab and I would like to curl the map to reveal some map options. When I do this it curls the ...
0
votes
1answer
15 views
How to switch back to the Main view i.e ViewController.h" what is the nib name for MainStoryboard.storyboard?
I use the following code to switch from main view (ViewController.h)to another view (TouchViewController) and then similarly switch from this view to the next view (QuestionsViewController).
How do I ...
-3
votes
0answers
49 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
0answers
11 views
Page curl button on map
I have a storyboard app. Is there a way to get the page curl button on the map itself? I can add it as a nav bar item, but would like it on the map.
0
votes
0answers
29 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 ...
0
votes
0answers
8 views
Is there a tool to export a live UIView to a XIB?
Sometimes a developer avoids working with XIBs and Storyboards in favor of manually assembling a view hierarchy in code because doing it in code seems less cumbersome than becoming proficient with ...
1
vote
0answers
13 views
UIModalTransitionStylePartialCurl in tabbed application
I am trying to use a UIModalTransitionStylePartialCurl in a tabbed application. However I cannot see the 'trigger' ie the page curl as it is hidden behind the tab bar. Is it possible to use ...
0
votes
1answer
26 views
How to open files in a UIWebView?
I just make a file browser for iOS, I just need to know how to open any kind of file in a UIWebview. I think the webview can open any kind of file, that's because I chose to use a UIWebView to view ...
0
votes
0answers
8 views
iPhone UIStoryboard view frame has all zero values during initWithFrame:
I started to work with a storyboard that uses autolayouts and am running into an issue where during initialization of some of my controllers the frames of these controllers have all 0 values: ...
0
votes
0answers
9 views
ECSlidingViewController swipe gesture issue on View Controller
I'm using ECSlidingViewController for my app for the slide out menu and having a imageview on my all view controllers. It works perfectly but when i to the right when the menu controller(Slide view) ...
0
votes
0answers
9 views
Proper way to reclaim screen space when hiding ad banner iOS storyboard
When I hide my ad banners for any reason, e.g. the ads aren't available or my user has upgraded the app to turn off ads, I want to reclaim the real estate on my user's screen by resizing the content ...
0
votes
0answers
10 views
Allow autorotate only for a specific view [duplicate]
I'm working on an application designed to be used only in portrait mode (locked from .plist), but there's a MPMoviePlayerViewController which I want it to support landscape view mode. How I can do ...
0
votes
3answers
47 views
iOS storyboard how to present a controller from right using “push” style without navigation controller?
I got a regular full screen view controller defined in storyboard. It has no navigation controller. When a user taps a button, I would like to present another view controller wrapped in a navigation ...
0
votes
1answer
40 views
How To Set Segue Identifier at runtime(programmatically)?
i am using a segue for transition between two view controllers
i have some different-different conditions according to which i want to change segue identifier. i have only one button with one segue, ...
0
votes
1answer
38 views
ios table cell left detail not dynamic size
I have a storyboard with a static table view.
It has a cell that is a counter. It is a left detail :
countLabel "Records"
I update the countLabel when my count increases, however some ...