On OS X, a nib file describes the visual elements of your application’s user interface, including windows, views, controls, and many others
2
votes
0answers
147 views
Unsupported Configuration Multiple Objects Using Identifier “” (Identifiers must be unique)
I have just started using array controllers so my experience with them is very limited.
I am getting this warning in XCode 4.1:
Unsupported Configuration Multiple Objects Using Identifier ""
...
1
vote
0answers
22 views
Sending a friend an xCode project/Sharing an xCode project
I am currently trying to share an xCode project with a friend and I want to know the easiest way to share the project with him. The main reason that I want to share it with him is, because I want to ...
1
vote
0answers
39 views
Undoing localization nib file Xcode
I am working in localizing an app for French and Spanish. We localized some nib files but recently decided we are going to change some elements in the nib files programmatically rather than creating a ...
1
vote
0answers
164 views
In app Purchase Apple hosted content - How to load nib from downloaded pkg file
I have following file structure in my hosted content, after extracting every possible archive in the way.
My hosted content was originally a pkg file which was uploaded to Apple, and after ...
1
vote
0answers
86 views
Why does Interface Builder constantly update its files (changes seem arbitrary)?
Everyday, I notice in Xcode 4.5 with source control, Interface Builder very frequently changes xib files.
For example, I could open a xib and click on one of the views on the left side and switch one ...
1
vote
0answers
80 views
Dynamically Loading a View
I am having a strange issue when attempting to dynamically load a view.
The error I get is as follows:
* Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: ...
1
vote
0answers
102 views
Monotouch custom UITableViewCell key value coding error
Evaluating Monotouch for our project and getting this error:
MonoTouch.Foundation.MonoTouchException: Objective-C exception thrown. Name: NSUnknownKeyException Reason: [ ...
1
vote
0answers
133 views
Can we assign UIView object to UIView object of XIB?
I have created UIView (say A) object through code and added all the sub views like UIButton, UILabel etc. through code. One other UIView (say B) I have created in XIB. now I am trying to assign A to ...
1
vote
0answers
273 views
Storyboard to a nib
I have an RSS parser in a table view that pushes to the detail view when one of the rows is selected. I had it working fine in the old UI format of using Nib files, but I wanted to transfer everything ...
1
vote
0answers
121 views
UIView subclassing - how to block default drawRect method
I have the following task.
I have set up a UIView in InterfaceBuilder and set it my own UIView subclass which I use do draw this view with rounded corners and a line around it. What I want to have, is ...
1
vote
0answers
104 views
Assigning an NSView to a window's contentView in the NIB
I am doing an exercise that assigns a view programmatically, but in which the author says, "We could do this in IB, but let's do it in code".
Here is the setUp.
1) 2 nib files, one "MainMenu" , the ...
1
vote
0answers
144 views
iPad view controller loading blank on simulator, fine on ipad and simulator < 5.0
I've got an iPad app that I've been developing and testing against iOS 4.2. When I started testing on iOS 5.0, a lot of things have started working strangely.
The app starts up with a ...
1
vote
0answers
228 views
Is possible to store & load UITableViewCells & stand-alone nibs from storyboard?
I have some nibs that are UITableViews & also custom controls. This controls have actions that will launch storyboard sieges.
So, I have 3 normal UIViewControllers that are connected by the ...
1
vote
0answers
287 views
AQGridView: Problem when load nib file
I'm working with AQGridView, and when I load the nib file, he also load an square white ahead of elements.
In this project, I also implemented
- (CGSize) portraitGridCellSizeForGridView: (AQGridView ...
1
vote
0answers
489 views
UINavigationController and low-memory warnings
I use a UINavigationController (included in my app's main NIB file) with the following view-controller structure:
navigationController
|
V
RootVC ---> LevelOneVC ---> ...