active questions tagged interface-builder - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T00:00:44Zhttp://stackoverflow.com/feeds/tag/interface-builderhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1888724/how-provide-own-sent-messages-in-interface-builder0How provide own Sent Messages in Interface BuilderStefan Sachs2009-12-11T15:17:04Z2009-12-11T19:50:41Z
<p>I cannot find documents about the way, in which Interface Builder determines the Sent Message outlets for the graphical connections between components triggering events and messages of other components.<br>
I want to generate components encapsulating Finite State Automata. The input part is simple, just define IBAction messages and you can connect them in in Interface Builder. The tricky part is obviously the other end of such connections.<br>
I want to provide for each event triggered by the FSM a distinct outlet, like the 'selector' outlet of a NSButton (listed under 'Sent Messages' on the 'Connections' tab of the inspector).<br>
How do I specify such interfaces programmatically and can I specify more than one of these?
Or is this approach not suitable; would Notifications be a better way? (I am used graphical connections from Visual Age and Parts, so I would prefer them, but in Interface Builder, the support for such connections seems somehow limited).</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1887102/iboutlet-with-pyobjc-and-interface-builder0IBoutlet with PyObjC and Interface Builderibz2009-12-11T10:16:27Z2009-12-11T16:42:35Z
<p>I'm writing a simple OSX app using Python and PyObjC. I designed the settings dialog using Interface Builder and I use ibtool to compile it, then load it from Python. The problem is how to access the controls I have in this window from the Python code? I played around with iPhone development a bit before and I remember I need to have an IBOutlet in the controller class which will be connected to the UI control in the interface builder. It should look something like this in Python:</p>
<pre><code>class MyClass(NSObject):
my_outlet = objc.IBOutlet('my_outlet')
</code></pre>
<p>But since I'm not working in XCode (all I have is a .py file and a .xib file), Interface Builder doesn't know about my outlets. How can I do the binding in this case? Or how else can I access the UI elements from the code?</p>
http://stackoverflow.com/questions/1859112/crash-when-scrolling-a-uipickerview-set-up-with-ib0Crash when scrolling a UIPickerView set up with IBJuBu13242009-12-07T10:23:26Z2009-12-11T08:56:48Z
<p>This is my first time using IB, but after spending a one or two intimate days with it I believe I'm beginning to understand it. That's just my way of saying I might be overlooking something simple here:</p>
<p>I've set up a UIPickerView and joined it to its DataSource and Delegate object in IB (both different Classes in my case). This allows the picker to show up when I run the app, which is very encouraging when it hasn't been showing up in any previous test runs. ;) However, when I scroll the UIPickerView, the program crashes, and I can't find any of my code referenced in the backtrace. After quite a bit of troubleshooting, I think I've narrowed down the crash to two distinct cases, as far as the backtrace is concerned:</p>
<p><strong>the return value of -pickerView:numberOfRowsInComponent: > the number of rows displayed</strong></p>
<ul>
<li>The app crashes as soon as a motion is begun to select a new row</li>
<li>The app crashes if I try to use -selectRow:inComponent:animated:</li>
</ul>
<p>backtrace (ignoring main):</p>
<pre><code>#0 0x955e8688 in objc_msgSend ()
#1 0x0167bea8 in -[UIPickerView table:cellForRow:column:reusing:] ()
#2 0x016773c1 in -[UIPickerView table:cellForRow:column:] ()
#3 0x017fef53 in -[UITable createPreparedCellForRow:column:] ()
#4 0x018077c8 in -[UITable _updateVisibleCellsNow] ()
#5 0x018027cf in -[UITable layoutSubviews] ()
#6 0x03ac42b0 in -[CALayer layoutSublayers] ()
#7 0x03ac406f in CALayerLayoutIfNeeded ()
#8 0x03ac38c6 in CA::Context::commit_transaction ()
#9 0x03ac353a in CA::Transaction::commit ()
#10 0x03acb838 in CA::Transaction::observer_callback ()
#11 0x007b8252 in __CFRunLoopDoObservers ()
#12 0x007b765f in CFRunLoopRunSpecific ()
#13 0x007b6c48 in CFRunLoopRunInMode ()
#14 0x000147ad in GSEventRunModal ()
#15 0x00014872 in GSEventRun ()
#16 0x0168a003 in UIApplicationMain ()
</code></pre>
<p><strong>the return value of -pickerView:numberOfRowsInComponent: < the number of rows displayed</strong></p>
<ul>
<li>The app crashes after the motion ceases and the row is selected</li>
<li>The app does <em>not</em> crash if I try to use -selectRow:inComponent:animated:</li>
</ul>
<p>backtrace (ignoring main):</p>
<pre><code>#0 0x955e8688 in objc_msgSend ()
#1 0x0167700d in -[UIPickerView _sendSelectionChangedForComponent:] ()
#2 0x017f4187 in -[UIScroller _scrollAnimationEnded] ()
#3 0x016f732c in -[UIAnimator stopAnimation:] ()
#4 0x016f7154 in -[UIAnimator(Static) _advance:] ()
#5 0x00017739 in HeartbeatTimerCallback ()
#6 0x007b7ac0 in CFRunLoopRunSpecific ()
#7 0x007b6c48 in CFRunLoopRunInMode ()
#8 0x000147ad in GSEventRunModal ()
#9 0x00014872 in GSEventRun ()
#10 0x0168a003 in UIApplicationMain ()
</code></pre>
<p>My delegate and datasource implementations follow:</p>
<pre><code>- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {
return (NSInteger)3;
}
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {
return (NSInteger)4;
}
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component {
//it will probably be better to use the method following when creating the rows, so I can better customize it
return @"strings";
}
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
NSLog(@"selected a row");
}
</code></pre>
http://stackoverflow.com/questions/1882866/button-to-sound-in-interface-builder0Button to sound in Interface Builder?Harry Elliott2009-12-10T18:04:00Z2009-12-10T19:03:52Z
<p>I'm working with the iPhone 3.0 SDK (bit of a novice really), and I have set up an Interface Builder View with several UIButtons in it. I also have several sound files in the Xcode project.</p>
<p>I have searched for this and none of the solutions seem to work for me. Does anyone know how to make a short sound play once upon pressing a button?</p>
<p>Sorry about the simplistic question, but Apple's avTouch doesn't build on my Xcode.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1876912/how-to-make-a-view-outlet-show-up-in-a-viewcontroller-nib0How to make a "view" Outlet show up in a ViewController nib?philfreo2009-12-09T21:11:34Z2009-12-09T21:21:39Z
<p>I'm working on my first iPhone app and have been able to get most things done. There's one problem that I've run into a few times and I want to understand the issue better.</p>
<p>In XCode, if I go <code>File->New File->UIViewController subclass</code> and make sure that both <code>UITableViewController subclass</code> and <code>With XIB for user interface</code> are checked, then it creates a <code>MyViewController.h</code>, <code>MyViewController.m</code>, and <code>MyViewController.xib</code>. </p>
<p>When I look at this xib in Interface Builder, you can see that the File Owner has an Outlet called <code>view</code> that is already connected to the <code>UITableView</code>. No problem. This all makes sense and is great.</p>
<p>My issue comes when I've changed the type of my class (or done something else) and some how the "view" Outlet goes away. I get an error saying "view not showing up in file owner outlet". </p>
<p>My question is how do I then reconnect the UITableView as the "view" of the ViewController when the Outlet goes away? The only way I've been able to get it to work is to literally start over with a new xib/viewcontroller.</p>
http://stackoverflow.com/questions/1875718/iphone-project-templates0iPhone Project TemplatesTravis2009-12-09T18:05:21Z2009-12-09T18:57:23Z
<p>How come in the App delegate implementation of some of the iPhone project templates do you not see the instantiation ([[alloc init]) of the view controllers yet they all work out of the box?</p>
http://stackoverflow.com/questions/1866724/iphone-ib-display-an-image-name-that-been-deleted-reference-and-trashed0iphone - IB display an image name that been deleted (reference and trashed) omri2009-12-08T12:43:37Z2009-12-09T01:17:39Z
<p>hi. when i choose a uiimageview in interface builder it display in the image pick list (of this imageivew) an image name that been deleted from this project (deleted:reference and trashed),
why the image name still on the list ?</p>
http://stackoverflow.com/questions/1870192/photoshop-like-range-selection-bar-in-cocoa-iphone0Photoshop-like range selection bar in Cocoa/iPhoneivanTheTerrible2009-12-08T22:07:29Z2009-12-08T22:30:19Z
<p>I am wondering how to make the typical "range selection" bar, as seen in Photoshop and many other applications. Cocoa/Cocoa Touch only provide the very basic slide bar.</p>
<p><img src="http://ivzhao.com/temp/rangeCocoa.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1870143/whats-better-to-insert-multi-images-to-uiimageviews-using-the-code-or-ib0whats better, to insert multi images to uiimageviews using the code or IB ?omri2009-12-08T21:59:55Z2009-12-08T22:07:23Z
<p>hi, if i have multi uiimageviews (30 images) in the view, is it better (for performance) to insert the images from the code or insert them using the IB.</p>
http://stackoverflow.com/questions/1323258/connecting-iboutlet-to-viewcontroller-managed-by-a-uitabbarcontroller0Connecting IBOutlet to ViewController managed by a UITabBarControllerDimitris2009-08-24T16:03:11Z2009-12-08T14:32:54Z
<p>I get a crazy error and I am unable to see why it happens.
I have made a simple app that uses a TabBar to navigate 3 views. I created everything and added one UIImageView to each of the 3 ViewControllers that the TabBar manages. Everything works fine. In the app you are able to navigate the 3 views and see the 3 images.</p>
<p>Now I add one UIButton (or any other component) to the 1st ViewController. I add it in the NIB and in my code I do the usual:</p>
<pre><code>IBOutlet UIButton *btn;
@property (nonatomic, retain) IBOutlet UIButton *btn;
@synthesize btn;
[btn release];
</code></pre>
<p>and connect the UIButton in my NIB to the "btn". Now the app crashes as soon as the TabBar tries to show this view (which is imediately after it launches) giving me a:</p>
<blockquote>
<p>2009-08-24 16:52:25.164
AppName[2249:207] *** Terminating app
due to uncaught exception
'NSUnknownKeyException', reason:
'[
setValue:forUndefinedKey:]: this class
is not key value coding-compliant for
the key btn.'</p>
</blockquote>
<p>I tried restarting the SDK, my computer, building for 2.2.1, 3.0, for simulator, for device, cleaning all targets, etc but the problem remains. I am sure it has something to do with the UITabBarController. I just can't see what.</p>
http://stackoverflow.com/questions/1864328/button-background-setting1Button background settingJohn R Doner2009-12-08T03:10:14Z2009-12-08T05:15:49Z
<p>This question is almost embarrassing to ask, but I can't find the answer in any documentation.</p>
<p>I have a UIButton in a view. In IB, I set the button's background to a colour. The original rectangle in the Identity Inspector shows a half-black, half-white rectangle for the button's background.</p>
<p>I can't find anyway to set the background back to the original setting. Anybody know how to do this?</p>
<p>Thanks in advance for any help.</p>
<p>John Doner</p>
http://stackoverflow.com/questions/1861697/managing-different-windows-in-apples-interface-builder0Managing different windows in Apple's Interface Buildertilish2009-12-07T17:51:35Z2009-12-07T17:51:35Z
<p>I'm working on Interface Builder. I don't like the fact that I have to manage multiple windows. For example if I open two xib files I can easily have six different windows scattered across my window. One problem is bringing these windows together to make a sensible arrangement. Another problem is Interface Builder doesn't remember this arrangement if I close it reopen it again. Does Interface Builder have an all-in-one view? How do you deal with this?</p>
http://stackoverflow.com/questions/1855034/centering-windows-on-screen1Centering Windows on screenKaji2009-12-06T10:44:30Z2009-12-07T15:29:01Z
<p>Short and sweet: How can I tell Interface Builder to center a window on a user's screen? I've seen the positioning tool on the inspector, but eyeballing doesn't always land as squarely as I like. Is this something where I should switch over to Xcode and add something to the <code>init</code> or <code>awakeFromNib</code> methods?</p>
http://stackoverflow.com/questions/1856519/setting-horizontal-line-nsbox-line-width-in-interface-builder0Setting Horizontal Line (NSBox) line width in Interface BuilderMarkPowell2009-12-06T20:36:31Z2009-12-07T13:08:53Z
<p>I have an application that I am building am making use of Horizontal Line (which is just a special case of <code>NSBox</code>). I've placed the component into the interface, but what to adjust the thickness of the line. </p>
<p><code>NSBox</code> has a <code>setBorderWidth</code> method, but doesn't seem to have this exposed when in Interface Builder. I would prefer not to do this manually, as I don't want to have to maintain an object simply to adjust this single value. </p>
<p>Is there a way to set this via Interface Builder that I am just missing?</p>
<p>Or, failing that, is there a better way to put a Horizontal Line in your UI such that you can control it's attributes via Interface Builder?</p>
http://stackoverflow.com/questions/1855468/relationships-vs-attributes-in-core-data0Relationships vs. Attributes in Core DataKaji2009-12-06T14:03:53Z2009-12-07T04:43:32Z
<p>Overall I'm loving Core Data so far, but there is one quirk in the system that I keep coming back to, and that's problems created when I decide to use relationships instead of attributes.</p>
<p>Using cars for an example, let's say I have a <code>Car</code> entity and a <code>Manufacturer</code> entity. Ideally, I can just put a relationship between them, many cars to one manufacturer, and then when I'm setting up the edit page for the cars have the manufacturers fed into an <code>NSPopUpButton</code> for the user to select. This works, but it doesn't seem to save any value, so when I reload the edit page for that particular car the manufacturer appears blank.</p>
<p>Another alternative that saves the data is to treat the manufacturer as an attribute, and then set the form up the same as before (manufacturer names fed into an <code>NSPopUpButton</code> list). This consistently saves the manufacturer in the car's data, but no inverse relationship is created connecting back to the manufacturer, which is less than ideal.</p>
<p>How do you use relationships and attributes most effectively in Core Data? Further, how do you resolve issues like the one outlined above so that the connections are made, but the names of the linked items are displayed instead of "No Data" or fault notices?</p>
http://stackoverflow.com/questions/1853705/tinkering-under-the-hood-with-bindings-in-xcode0Tinkering under the hood with Bindings in XcodeKaji2009-12-05T22:39:08Z2009-12-06T21:01:20Z
<p>Let's take two Core Data entities, set up as follows:</p>
<p>Entity A: Car</p>
<pre><code>Attributes:
year
model
Relationships:
manufacturer (<<-> Manufacturer)
</code></pre>
<p>Entity B: Manufacturer</p>
<pre><code>Attributes:
name
country
Relationships:
cars (<->> Car)
</code></pre>
<p>Now, what I want to do is bind the display to an <code>NSTableView</code> where we have the model of the car in one column, followed by the manufacturer, followed by the year. Binding the model and year are no problem, but if I bind the relationship to a column in the table, I get the text of a relationship fault error in each cell in that column instead of anything I'm looking for. <b>How can I play with the binding to allow me to display the proper manufacturer name associated with the car?</b></p>
<p>Extending the question a bit further, how could I set up another table view to display, say, other <code>Car</code> entries with the same <code>manufacturer</code> relationship?</p>
http://stackoverflow.com/questions/1656020/hidden-features-of-interface-builder6Hidden Features of Interface Builder?Gordon Potter2009-11-01T00:24:57Z2009-12-06T11:10:31Z
<p>What are some uncommon or "hidden" features of Interface Builder you wish you would have known about when first learning Xcode + Interface Builder?</p>
<p><strong>Edit:</strong></p>
<p><a href="http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago">Xcode specific tips here.</a></p>
<p>This question is specifically concerned with the GUI and not so obvious features of Interface Builder. And only tangentially related to Xcode. </p>
http://stackoverflow.com/questions/1458061/see-a-white-band-at-the-bottom-of-screen-while-adding-view-to-window-programatica0See a white band at the bottom of screen while adding view to window programatically in iphone?rkbang2009-09-22T04:10:24Z2009-12-06T00:42:48Z
<p>Hello all,</p>
<p>When I developed a view based project in XCode, My view works fine. But when I use a window based project and create a view on my own and try adding it as a subview to window, it gives me a white band at the bottom. I never faced this issue before but facing it first time.</p>
<p>Anyone having a solution?</p>
<p>Tnx in advance.</p>
http://stackoverflow.com/questions/1833423/core-data-relationship-fault0Core Data Relationship FaultKaji2009-12-02T14:57:51Z2009-12-05T02:30:02Z
<p>Tracking a familial relationship in Core Data (1 parent entity + 2 types of children, one of which is recursive), trying to create a drop-menu in Interface Builder that lists the names of the parent entities so that the user can choose one to associate as the parent of the entry being edited. I've got the bindings all set, but when it runs it produces the following error text in the first slot of the menu:</p>
<blockquote>
<p>Relationship fault for (<code><NSRelationshipDescription: 0x100143ed0></code>), name parent, isOptional 1, isTransient 0, entity Family, renamingIdentifier parent, validation predicates (<code>
</code>), warnings (<code>
</code>), versionHashModifier (<code>null</code>), destination entity Family, inverseRelationship subFamilies, minCount 0, maxCount 0 on 0x10025c850</p>
</blockquote>
<p>I've done a little bit of reading around online, and it appears to have to do with the fact that I've got a many-to-one relationship set up (as one parent can have multiple children, but I want to limit each child to only one parent). I've been trying to figure out a way to restructure the data model to not put a many-to-one relationship on something that'll need to be called up in such a fashion, but I'm getting stuck trying to figure out how to track the children. Any ideas on possible methods of resolving the issue?</p>
http://stackoverflow.com/questions/1746281/cant-connect-iboutlet-in-interface-builder1Can't connect IBOutlet in Interface Builderhaider2009-11-17T02:47:52Z2009-12-04T21:52:53Z
<p>I'm having a weird experience. I create any type of iPhone application, add a UIViewController with Xib file. I can edit the xib file with controls and see them rendered if I run. Now i'm trying to add a few IBOutlets to the controller, so I add them to the .h file, synthesize on the .m file. Then i head over to Interface Builder to connect the outlets. I drag the UILabel to the UIView, and then i try to connect the File Owner (which my custom UIViewController), but all that i can select when i try to connect to the UILabel is "view", which is obviosly wrong. So I'm not able to connect IBOutlets to their controls in Interface Builder.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1845886/filtering-entries-from-a-core-data-entity-that-appear-in-an-nspopupbutton-list0Filtering entries from a Core Data entity that appear in an NSPopUpButton listKaji2009-12-04T09:38:51Z2009-12-04T14:17:03Z
<p>I'm familiar with how to feed data from one Core Data entity into an <code>NSPopUpButton</code> item so that it can be selected for another. Bindings like so:</p>
<p>For the values themselves:</p>
<pre><code>-> ValueSelection.Content
Bind To: Value Source Entity
Controller Key: arrangedObjects
Model Key: N/A
</code></pre>
<p>For the values displayed in the <code>NSPopUpButton</code>:</p>
<pre><code>-> ValueSelection.ContentValues
Bind to: Same entity as ValueSelection.Content
Controller Key: arrangedObjects
Model Key: the name of the attribute you wish to have displayed
</code></pre>
<p>To link it to the destination value:</p>
<pre><code>-> ValueSelection.SelectedObject
Bind to: Destination entity
Controller Key: selection
Model Key: Name of the attribute/relationship in the destination entity.
</code></pre>
<p>What I'm trying to do is figure out if there is a way to set up a filter (I'm guessing in <code>ContentValues</code>) where you can only have it grab entries from that entity that have a certain attribute flag checked (e.g. say I'm pulling from my <code>users</code> entity and I just wanted to list male or female users).</p>
http://stackoverflow.com/questions/1846455/allowing-the-user-to-submit-images-within-a-cocoa-application0Allowing the user to submit images within a Cocoa applicationKaji2009-12-04T11:42:50Z2009-12-04T12:30:41Z
<p>How do you set up an object in interface builder that will allow the user to submit an image (like when editing a vCard in Address Book) and save it to the corresponding entry in the database being managed by Core Data?</p>
<p><b>Solution</b></p>
<p>Use an <code>NSImageView</code> object. On the first panel of the inspector for the object, you'll see a checkbox marked <code>Editable</code> that will allow you to decide whether to accept submissions or just display output.</p>
<p>Bindings for the object are as follows:</p>
<pre><code>-> Value.Data
Bind to: Source Entity
Controller Key: selection
Model Key Path: Name of the attribute within the entity storing the image data
</code></pre>
http://stackoverflow.com/questions/1627340/how-do-i-load-a-uiviewcontroller-from-a-nib-with-placeholders0How do I load a UIViewController from a NIB with placeholders?Ed Marty2009-10-26T21:06:15Z2009-12-03T17:46:06Z
<p>I have a UIViewController that I want to load from a NIB that has a proxy (placeholder) object defined in it. The first time I load it, I go through this rigamarole:</p>
<pre><code>MyViewController *screen = [[MyViewController alloc] init];
NSDictionary *proxyDict = [NSDictionary dictionaryWithObject:myObject forKey:@"MyProxy"];
NSDictionary *optionsDict = [NSDictionary dictionaryWithObject:proxyDict forKey:UINibExternalObjects];
[[NSBundle mainBundle] loadNibNamed:@"MyViewController" owner:screen options:optionsDict];
</code></pre>
<p>So this sets up the proxy object declared as "MyProxy" in the NIB file to point to the object <code>myObject</code> that already exists. This much works.</p>
<p>Now, if I go to a different screen and trigger a low memory warning, it unloads the view. when I go back to that screen, it does the automatic reloading of the view, which has no room for a manually-defined options dictionary for setting up proxy objects, and then it crashes trying to find an object to link "MyProxy" to.</p>
<p>How can I make this work?</p>
http://stackoverflow.com/questions/1839160/allow-0-values-in-nsdatepicker-fields0Allow 0 values in NSDatePicker fields?Kaji2009-12-03T10:49:32Z2009-12-03T16:24:43Z
<p>Is it possible to modify an <code>NSDatePicker</code> object to allow for <code>0</code> values in the month and/or day columns? Dealing with a situation where the specific day in particular is non-essiential but nice to have data (and data which the user likely doesn't know offhand to begin with).</p>
http://stackoverflow.com/questions/1815126/how-do-you-change-which-view-is-active-in-a-window0How do you change which view is active in a window?Kaji2009-11-29T09:54:36Z2009-12-03T10:52:05Z
<p>The program I'm working on right now is a bit cumbersome, as it starts with a central menu, and then once the user chooses an option from it it opens their selection in a new window, when I've got a perfectly good window I can (at least apparently) repurpose to that effect. I've been reading <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/CocoaViewsGuide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40002978-CH1-SW1" rel="nofollow">the manual</a> regarding views, and I understand what it's talking about regarding view hierarchy and such, but the method of swapping which view is active is confusing me. What do I need to do to have it "sweep away" the initial menu and replace it with another view containing the content the user selected?</p>
http://stackoverflow.com/questions/1838791/calling-up-a-specific-record-in-core-data0Calling up a specific record in Core DataKaji2009-12-03T09:37:33Z2009-12-03T09:54:30Z
<p>I'm setting up an edit window for a player to edit his user data. I've got all of the fields on the edit form bound to the appropriate Core Data entity (via an <code>NSArrayController</code>), and I've got an <code>awakeFromNib</code> method installed to handle calling the record, but I'm not sure what to put inside the method to get the record to display.</p>
<p>Ultimately, my goal with this is to set it up so that the application checks whether an entry exists for the user, and create one for him if there's no entry in the table.</p>
http://stackoverflow.com/questions/1837730/pushviewcontroller-now-crashes0PushViewController now crashesRedback2009-12-03T04:54:02Z2009-12-03T05:45:48Z
<p>In some working code, I had a call to PushViewController, which loaded (successfully) a new view from an xib.</p>
<p>I went into the XIB and added a couple of buttons. Retried the code, and the view continued to be displayed at the appropriate point in the code.</p>
<p>I then deleted those buttons, and since that point, the code no longer works. It now crashes with an unhandled exception error. I can't track it through the debugger - it takes a few steps into the code and crashes.</p>
<p>I've probably disconnected something in IB, but I don't know what.</p>
<p>Can anyone offer any suggestions as to what I've broken, and how to fix it?</p>
<p>Thanks in advance for your assistance.</p>
http://stackoverflow.com/questions/1834466/accessing-nib-xib-objects-from-controller0Accessing nib/xib objects from controller.Alberto2009-12-02T17:23:22Z2009-12-02T18:13:33Z
<p>Hi! </p>
<p>I have a UI file in xcode, and I have an AppDelegate class with an awakeFromNib function. From this function, is there a way to change properties of objects which are in the UI? For example, change the string of a label, textfield and so on.</p>
<p>Sorry for bad english, tried to explain as well as I could.</p>
<p>Any help would be very appreciated!</p>
<p>—Albé</p>
http://stackoverflow.com/questions/1829957/how-to-initialize-uitableview-both-from-xib-and-programmatically0how to initialize UITableView? Both from XIB and programmatically?CapsicumDreams2009-12-02T00:33:40Z2009-12-02T08:31:47Z
<p>Hi all,</p>
<p>I have a simple request that I have spent much time on (embarrassingly)..</p>
<p>I have sub-classed a UITableView to add some functionality. These new features require things like NSMutableSet which require allocation/initialization.</p>
<p>I have put my object's initialization routine in</p>
<pre><code>- (id)initWithFrame:(CGRect)frame style:(UITableViewStyle)style {
</code></pre>
<p>which I understood from the apple docs to correct - but this doesn't get called (determined by break-pointing on the code).</p>
<p>I am using IB, and have dragged a UITableView onto the view, and changed it's class to my new sub-class. There is no UITableViewController.
I have also tried:</p>
<pre><code>- (void)loadView {
- (id)init {
- (id)initWithFrame:(CGRect)frame {
</code></pre>
<p>with no success. I would like to have this class work both with IB, and programmatically in the future. Everything works apart from the location of this initialization..</p>
<p>Thanks very much..</p>
http://stackoverflow.com/questions/1819873/test-build-of-cocoa-application-not-compatible-with-testers-version-of-os-x0Test build of Cocoa application not compatible with tester's version of OS X.Kaji2009-11-30T13:38:24Z2009-12-02T05:18:47Z
<p>I've been building a basic Cocoa application with Core Data and Interface Builder, and no extra coding, frameworks, or header files. I sent it to someone to test on their machine (a last-gen G5 iMac), and they got a message saying that their machine couldn't run it. I discovered the switch to compile for PPC, so I built a PPC version of the application to try out, and that produced the following error message:</p>
<blockquote>
<p>You cannot use this version of <code>Application</code> on this version of Mac OS X.</p>
</blockquote>
<p>I'm running Xcode 3.2.1, Interface Builder 3.2.1, and OS 10.6.2. The conversation with my tester was a bit confusing; at first it sounded like she only had Tiger on her machine, saying Leopard was incompatible (I corrected and said that Leopard should be, it's <i>Snow</i> Leopard that isn't), and then by the end of the conversation she was about certain that her machine was running Leopard, but had already shut it off by then. So I'm not sure which version of OS X is on the offending iMac, but it's the latest version of either 10.4.11 or 10.5.8 (the tester is in a remote location, so I can't verify personally at the moment).</p>
<p>What can I tweak to try and improve compatibility on my tester's machine?</p>