0
votes
1answer
2 views
iPhone: Is there a way to loadFromNib AND have a reuseIdentifier?
I am thinking about this problem now for very long.
I try to use different types of cells in my table, that each have their own cell controller and have a reuseIdentifier AND load …
0
votes
2answers
29 views
How to get the resource for NIB file on MAC OSX
Is there a tool to get all string for NIB file on MAC OSX? Right now, I have to copy it from the NIB editor. Thanks.
0
votes
1answer
37 views
Cocoa Loading a ViewNib
When creating a nib, I have 2 types to create, a WindowNib or a ViewNib. I see the difference is, the window nib has a window, and a view.
How do I load a view nib into another w …
1
vote
1answer
59 views
NSViewController and multiple subviews from a Nib
I'm having a difficult time wrapping my head around loading views with Interface Builder and NSViewController.
My goal is to have a view which meets the following description: Top …
0
votes
2answers
52 views
Load a nib into an UIView?
Hey guys,
I need some help.
I've got a segmented control. if segment 0 is clicked it shows a UIView, containing a uitableview.
If segment 2 is clicked it shows another UIView whi …
1
vote
1answer
45 views
initWithNibName VS NSBundle’s loadViewNamed
I've noticed that there are two different ways to load nib files: 1) via the UIView's initWithNibName:bundle: method and 2) NSBundle's loadNibNamed:owner:options: method. Can someo …
0
votes
2answers
59 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
2answers
72 views
Memory leak in loadNibNamed?
I'm about to wrap up my first iPhone app and figured I'd run it through the Leaks Performance Tool. After fixing one obvious one, the only one I have left is one with a Nib acting …
0
votes
2answers
241 views
iPhone custom UIView bounds
I am trying to create a custom UIView that is stored in a nib so that I can position it using Interface Builder.
I have created a class called RippleView that extends UIView. I'd …
1
vote
2answers
127 views
UIButton, created by Interface Builder, is crashing.
I have narrowed down an ugly bug, but since it seems like something internal to the nib/Interface Builder, I'm at a loss of what to do next.
I've got a UIView created in IB which …
1
vote
1answer
89 views
UIViewController subclass init not called when loading from nib
I tried overriding the default initWithNibName designated initializer of a UIViewController subclass like so:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nib …
0
votes
0answers
30 views
TabBarController not working with different nib files
Hi,
I've got a tabbarcontroller, and a MainView.nib that houses 3 Views and ViewControllers within the MainView.nib.
When I try to associate another nib with its own ViewControll …
0
votes
2answers
103 views
IB and UIView. What is the correct way to load a view hierarchy from a nib?
Can someone please school me on the proper way to load a view hierarchy from a nib file. I am using the loaded view as a template to stamp out a family of views and the current app …
1
vote
1answer
105 views
Possible to initialize an entire UITableViewController (or subclass) from a secondary NIB… not just a UIView?
Nearly all the UINavigationController examples out there show the use of initWithNibName:bundle: to load a NIB containing NOT an entire UIViewController (or subclass) but just a UI …
1
vote
1answer
56 views
Custom Cell from nib leaking
I have a subclass of UITableViewCell and am trying to use it. At the moment it does display fine as a test but I get leaking errors to the console...
- (UITableViewCell *)tableVi …
