Re: iPad Programming Tutorial

2010-04-26 Thread mlist0...@gmail.com
On Apr 25, 2010, at 7:01 PM, ML wrote: > Does anyone know of a resource that helps understand how to NOT use interface > builder for developing applications? Some variant of this question pops up here every now and then. Quoting from a post of my own: "Interface Builder is a fundamental part

Re: iPad Programming Tutorial

2010-04-26 Thread Matt Moriarity
I'm going to have to agree with Rick, IB is the way to go. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Un

Re: iPad Programming Tutorial

2010-04-26 Thread Henry McGilton
prevents me from using IB as much as I really >> should. >> >> - Original Message - >> From: "Matt Moriarity" >> To: "Rick Mann" >> Cc: "ML" , "Cocoa-Dev List" >> >> Sent: Monday, April 26, 201

Re: iPad Programming Tutorial

2010-04-26 Thread Henry McGilton
On Apr 26, 2010, at 8:15 AM, ML wrote: > > How about a good book that explains what IB does, how to set delegates, first > responders, connect things up, etc Here is an example of making a (simple) iPhone project all in code: http://www.trilithon.com/download/CodeOnly.zip There is a

Re: iPad Programming Tutorial

2010-04-26 Thread Klaus Backert
On 26 Apr 2010, at 17:49, David Rowland wrote: On Apr 26, 2010, at 8:15 AM, ML wrote: How about a good book that explains what IB does, how to set delegates, first responders, connect things up, etc I think that misunderstanding prevents me from using IB as much as I really should. ..

Re: iPad Programming Tutorial

2010-04-26 Thread David Rowland
nal Message - > From: "Matt Moriarity" > To: "Rick Mann" > Cc: "ML" , "Cocoa-Dev List" > > Sent: Monday, April 26, 2010 7:44:34 AM > Subject: Re: iPad Programming Tutorial > > I'm going to have to agree with Rick, IB i

Re: iPad Programming Tutorial

2010-04-26 Thread ML
uot;ML" , "Cocoa-Dev List" Sent: Monday, April 26, 2010 7:44:34 AM Subject: Re: iPad Programming Tutorial I'm going to have to agree with Rick, IB is the way to go. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: iPad Programming Tutorial

2010-04-25 Thread Rick Mann
I can't stress enough how much better it is to use IB. Having said that, a view created entirely programmatically is done in -loadView. You must implement that in your view controller subclass. If you do load a NIB but want to create additional views, do that in viewDidLoad. -- Rick On Apr 2

iPad Programming Tutorial

2010-04-25 Thread ML
Hi All, Does anyone know of a resource that helps understand how to NOT use interface builder for developing applications? I am trying to create a iPad SplitView application and I dont quite understand if I want to put code to create additional interface elements in: - (void)configureView or