Changing CAConstraint for a CALayer

2009-04-10 Thread Rama Krishna
. 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

Auto Resize Views Issues

2009-04-07 Thread Rama Krishna
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

Integrating application with Time Machine

2008-04-21 Thread Rama Krishna
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

RE: ObjC static member variable

2008-04-10 Thread Rama Krishna
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

A simple Objective-C question

2008-04-10 Thread Rama Krishna
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