RE: How to change Tool modes programmatically for a Image View?

2008-05-23 Thread Karl von Moller
Posted this question last night and maybe it was missed by most??!! Hi, I'm trying to find out if it's possible to change the tool mode of an IKImageView's View programmatically? These are the tool modes provided by IKImageView's header file IKToolModeNone; IKToolModeMove;

Re: How to change Tool modes programmatically for a Image View?

2008-05-23 Thread Randall Meadows
On May 23, 2008, at 2:31 PM, Karl von Moller wrote: Posted this question last night and maybe it was missed by most??!! Hi, I'm trying to find out if it's possible to change the tool mode of an IKImageView's View programmatically? These are the tool modes provided by IKImageView's header

Re: How to change Tool modes programmatically for a Image View?

2008-05-23 Thread Karl von Moller
Many thanks for this. I read through the documentation and some how missed this. I knew there had to be a simple answer and this works perfectly! Cheers Karl [myView setCurrentToolMode:IKToolModeSelect]; which can also be written as myView.currentToolMode = IKToolModeSelect;