0
votes
1answer
137 views
Exception When Setting the Nib Name field in Interface Builder
Hey Guys,
I'm trying to load a view controller from a nib in Interface Builder. My basic setup is this:
MainWindow.xib contains:
All the usual stuff, the app delegate instance, t …
0
votes
2answers
20 views
Reducing differences in xibs
I've been noticing superfluous changes in my xib files with Interface Builder 3.2.1.
Here are a few of them:
- <reference key="NSNextResponder"/>
+ <nil key="N …
1
vote
2answers
34 views
technical way of managing files - grouping files in xcode
I am in iPhone development since last 3 months.
Usually, While inserting a view Controller, I just right click on Classes & add new group.
& Within that group I just add …
0
votes
4answers
260 views
How to load an XIB?
I have an app with 2 screens (MainViewController and AboutViewController). Upon the user clicking a button, I'd like to load the AboutViewController screen, which is defined in an …
0
votes
2answers
60 views
Is it possible to directly edit the XML of XIB files?
I tried to do it, but Interface Builder refuses to open the resulting file:
"Interface Builder was unable to determine the type of [file name]"
0
votes
1answer
45 views
.xib not loading right (iPhone)
For some reason when I load a new view (from a .xib) it'll load the class files, BUT NOT the .xib!!
Here's my code:
login *lo =[[login alloc] initWithNibName:@"login" bundle:nil] …
0
votes
2answers
2k views
Multiple Views within one XIB - iPhone SDK
I have been spending time learning how to use the iPhone SDK. I've read "Beginning iPhone Development: Exploring the iPhone SDK" from cover to cover and I've never seen an example …
0
votes
1answer
63 views
Monotouch iPhone Landscape Mode
How do I keep a Monotouch iPhone app in landscape mode when loading a new view controller from an xib?
To switch to landscape mode when the app loads I use:
app.StatusBarOrient …
0
votes
1answer
47 views
XIB File Not Loading Properly In Interface Builder
I was creating a new View-based Application in XCode, adding some outlet and actions, using the IBAction and IBOutlet tags, into the automatically created controller view header fi …
5
votes
3answers
194 views
Localizing a modern xib-based Mac application
Ours is an open-source Mac application localized by volunteers. These volunteers will do their work on special localization builds of the software (with unstripped nibs), then send …
0
votes
5answers
1k views
Loading UINavigationController from another nib automatically by UITabBarController
I think I've found the cause: Document Info window in IB has a warning: "'Selected Navigation Controller (Second)' has nib name property set to 'SecondView.nib', but this view cont …
1
vote
2answers
48 views
Tool for viewing structural xib differences?
Is there a diff tool for viewing differences in XIB's? It could display what graphical elements are in one xib while missing in other?
0
votes
0answers
69 views
Separate XIB for UITabBarController?
I want to add a UITabBarController view to my window, after it has been running for a while (when a user pushes a button in my game). Adding a UITabBarController to the same xib as …
0
votes
2answers
33 views
terminating_due_to_uncaught_exception while trying to change views
I've been hitting this bug that I don't know what is wrong. When I debug this code and it hits here the program will lock up when it hit the addSubView line and says
terminating_d …
5
votes
2answers
205 views
Do I lose perfomance by using .xib files to provide an iPhone app’s GUI?
I was wondering if there is a difference between using .xib files for GUI design and doing this programmatically.
As it is a compiler I would assume that there is no relevant time …
