.
Unfortunately, I could not see any way of doing that. Can someone guide me
in the right direction on how to do this short of recreating the layers.
Thanks
Rama Krishna
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin
I created a view in Nib file containing several sub views/controls. I
enabled auto resizing for these controls by configuring appropriate struts
and springs in the Interface Builder's size inspector. This view is loaded
and added to an NSBox on an as required basis. Everything works fine. When
the
e and my application is active, I want my application
windows to show snapshots at different times.
Thanks
Rama Krishna
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Co
You can declare a static member variable in the implementation file (.m or
.mm).
static int someSharedVariable;
@implementation
//Use the someSharedVariable in any of the methods
@end
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
vance
Sent: Thursda
I am new to Objective-C but I have done C++/C#/Java work. I have been doing
some experiments to understand how the language works. I found that it is
not necessary for an Objective-C class to derive from Object. I was able to
create a class which did not derive from Object contrary to my assumption