Re: Write app without nib file.

2008-10-03 Thread Jeff Johnson
Daniele, My suspicion is that the issue has nothing to do with whether or not you have a nib. The code below won't work, because as far as I can tell, you never add the view to a window. A view needs to be in a window to receive events. By the way, it's standard Cocoa naming convention

Re: Write app without nib file.

2008-10-03 Thread Shawn Erickson
On Fri, Oct 3, 2008 at 7:06 AM, Daniele Basile <[EMAIL PROTECTED]> wrote: > Hi, > I want to write an application without using a nib file. Don't. At least use a very basic nib/xib just to make your life easy. -Shawn ___ Cocoa-dev mailing list (Cocoa-de

Write app without nib file.

2008-10-03 Thread Daniele Basile
Hi, I want to write an application without using a nib file. I found same code that do this and it works, but I am not able to manage event. For exactly I want to trap some event (tablet event) and manage this. So, I write this code: - main.m - import #impo