Re: Coalesced updates and refresh rate

2011-06-24 Thread Wolfgang Kundrus
Hi Graham, thanks for taking the time to put this together and I am glad to hear, you enjoyed it. Very nice graphics. In the mean time I have also experimented with this approach, and I believe this is the right thing to do. Also, there was some misconception on my end of what is going on behind

Re: Animating handwriting

2011-06-24 Thread Uli Kusterer
On 23.06.2011, at 18:45, Gustavo Pizano wrote: Yes kinda. kinda? Well, if you have a font, you simply don't have the information. So all you can do is transition it on screen with a wipe effect in direction toRight. CIFilter and CATransition (not sure if the latter exists on iOS) would be

TimeZone DST support

2011-06-24 Thread Appa Rao Mulpuri
Is there any way to get particular time Zone supports Day Light saving(DST) or not. For example, if you take Asia/Kolkata, no DST in any year and for America/Chicago, DST is YES. I saw following APIs in NSTimeZone, but it is considering the Date and returns that date is in DST or not. ­

Re: Animating handwriting

2011-06-24 Thread Ken Tozier
On Jun 24, 2011, at 4:05 AM, Uli Kusterer wrote: Come to think of it, you could probably manually click at even intervals on the stroke of every letter in characters written in the font you're using, record the click coordinates, and then draw bezier paths repeatedly, each time to one

Re: Animating handwriting

2011-06-24 Thread Gustavo Pizano
Hello all. So it will be good idea then to create a Mac app that will record the imput from the mouse/pen in a character basis, then record each character and then pass a string to a method, divided the string in characters and draw each character from the map I already did before... maybe

Re: Animating handwriting

2011-06-24 Thread Ken Tozier
On Jun 24, 2011, at 8:41 AM, Gustavo Pizano wrote: Hello all. So it will be good idea then to create a Mac app that will record the imput from the mouse/pen in a character basis, then record each character and then pass a string to a method, divided the string in characters and draw each

Custom NSCell and Bindings

2011-06-24 Thread Carter R. Harrison
It's a pretty typical situation. I've got my model objects stored in an NSSet. An NSArrayController that is bound to the NSSet. And then an NSTableView with one NSTableColumn bound to the arrangedObjects.name property of the NSArrayController. It works great. Now I've introduced a custom

Re: TimeZone DST support

2011-06-24 Thread Roland King
I don't see an API which will do this. Can I ask you why do you need to know? DST changes from place to place and from year to year, it's not inconceivable that a location which never had DST before suddenly decides as of year that it will start doing so. I would expect the current APIs

Re: tooltips not firing on first try

2011-06-24 Thread Corbin Dunn
Hi rick, It sounds like you are reporting a different issue than what Lee Ann was talking about, but the work arounds may also solve your issue too. If you can reproduce it, ideally package up a test app that makes it happen and attach it to a bug report. Or, if that is not possible, just

AQGridView

2011-06-24 Thread Fernando Aureliano
Have some tutorial about AQGridView? I'd like to know it better. Thanks! -- *Fernando Aureliano* ___ 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

Re: AQGridView

2011-06-24 Thread Evadne Wu
Hello Fernando, AQGridView comes with samples, and you can start from there. :) -ev On Jun 25, 2011, at 03:49, Fernando Aureliano wrote: Have some tutorial about AQGridView? I'd like to know it better. Thanks! -- *Fernando Aureliano* ___

Core Data : 'prepareForSave:: save for NSSQLCore already in progress

2011-06-24 Thread Jerry Krinock
I received a crash report from a user, Mac OS 10.5.8. Here's the gist: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'prepareForSave:: save for NSSQLCore 0x75d740 is already in progress' Thread 0 Crashed: 0 com.apple.CoreFoundation 0x96a75e94

How to assign a method for touch event to a UIImageView?

2011-06-24 Thread Jonathan Chacón Barbero
Good evening, I want to execute a method when the user touches a UIImageView. I designed my interface without Interface builder tools because I am blind. I can add an action to a UIButton with this code: [myButton addTarget:self action:@selector(onFotoClick:)

Re: How to assign a method for touch event to a UIImageView?

2011-06-24 Thread Fritz Anderson
On 24 Jun 2011, at 3:26 PM, Jonathan Chacón Barbero wrote: I want to execute a method when the user touches a UIImageView. I designed my interface without Interface builder tools because I am blind. I can add an action to a UIButton with this code: [myButton addTarget:self

Re: How to assign a method for touch event to a UIImageView?

2011-06-24 Thread Dave DeLong
On Jun 24, 2011, at 1:36 PM, Fritz Anderson wrote: UIImageView is not a control, so it doesn't have built-in handlers for touches that would feed a target-action pair. You'll have to make a subclass of UIImageView (in my experience it tolerates subclassing well), and add your own

Re: How to assign a method for touch event to a UIImageView?

2011-06-24 Thread Alex Kac
You could also create a UIButton and have it take a UIImageView. On Jun 24, 2011, at 3:36 PM, Fritz Anderson wrote: On 24 Jun 2011, at 3:26 PM, Jonathan Chacón Barbero wrote: I want to execute a method when the user touches a UIImageView. I designed my interface without Interface builder

Re: How to assign a method for touch event to a UIImageView?

2011-06-24 Thread Evadne Wu
Hello Jonathan, There are several ways around this. You can create a transparent UIButton laid out exactly where the image view is (and with the same autoresizing masks), then wiring up its action / target where desirable. Another way is to add a UITapGestureRecognizer on the image view.

Problem with NSOperation exiting and crashing the app

2011-06-24 Thread Laurent Daudelin
That used to work but I did some changes and I cannot find the cause of the problem. Basically, I'm adding an NSOperationInvocation to an NSOperationQueue. Everything executes correctly. However, it seems that when the NSOperation is about to exit and it's emptying its autorelease pool, it

Re: Problem with NSOperation exiting and crashing the app

2011-06-24 Thread Jens Alfke
On Jun 24, 2011, at 3:27 PM, Laurent Daudelin wrote: So, is there some way I could get more details from that mistake? Use NSZombieEnabled so you can find out what the over-released object is. (Look up the name in the Xcode docs or google it, if you’re not familiar with that feature.) —Jens

Re: Problem with NSOperation exiting and crashing the app

2011-06-24 Thread Laurent Daudelin
On Jun 24, 2011, at 15:31, Jens Alfke wrote: On Jun 24, 2011, at 3:27 PM, Laurent Daudelin wrote: So, is there some way I could get more details from that mistake? Use NSZombieEnabled so you can find out what the over-released object is. (Look up the name in the Xcode docs or google

Finder context menu behavior

2011-06-24 Thread Tony Romano
I'm trying to figure out what logic is being used to determine when the version number is displayed along with the application name and icon in the Finder Context Menu, 'Open With'. Sometimes for a given application listed like Word, Xcode, .etc. you will see a version number in parenthesis,

Re: Problem with NSOperation exiting and crashing the app

2011-06-24 Thread Nick Zitzmann
On Jun 24, 2011, at 4:38 PM, Laurent Daudelin wrote: On Jun 24, 2011, at 15:31, Jens Alfke wrote: On Jun 24, 2011, at 3:27 PM, Laurent Daudelin wrote: So, is there some way I could get more details from that mistake? Use NSZombieEnabled so you can find out what the over-released

Re: Animating handwriting

2011-06-24 Thread Scott Anguish
I don’t think it’s the amount of page space, rather the quantity of the alphabet. If this is just for an effect for an about screen or soemthing, I’d say your photoshop idea is the way to go. Otherwise, I’d suggest the drawing custom app, but even then you’re going to have issues with making

DO independentConversationQueueing, invocation from callback

2011-06-24 Thread Dave Keck
Hey list, I use independentConversationQueueing to make my DO invocations block, but doing so causes incorrect behavior in the following scenario: 1. ProcessA sends -handleMessage to ProcessB 2. ProcessB's -handleMessage executes, which sends -doSomething to ProcessC In Step 2, the DO