Question regarding response time between UIScrollView and UIButton

2010-01-22 Thread Steven Noyes
to do with "touchesShouldCancelInContentView:" and "canCancelContentTouches" but cannot put the pieces together. Steven Noyes ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator com

Re: Checking for NULL (was "Re: Can't get setDelegate to work...")

2009-03-05 Thread Steven Noyes
On Mar 4, 2009, at 7:54 PM, Mark D. Gerl wrote: Precisely.. code-in-email. I do handle all else cases, and wrap it all up inside exceptions. Kind of habit by now. What I was kind of fishing for in the nil/NULL checking - was - to recognize that it seems Cocoa programmers are trending to

Re: NSArray as a static

2008-09-01 Thread Steven Noyes
On Sep 1, 2008, at 1:38 PM, Jean-Daniel Dupas wrote: Unlike java, Obj-C does not have the concept of class variable. Your static variable is a classic C variable, and C variable are not automatically initialized to NULL. The first time you call init, relationshipMatch may contains anything

Re: Newbie question: What does "no-op" mean?

2008-08-30 Thread Steven Noyes
No operation. This is used to indicate a method or instruction that performs nothing. Steven On Aug 30, 2008, at 7:59 PM, Jon Davis wrote: See subject; I'm just discovering Cocoa and documentation such as that surrounding NSAutoReleasePool's release function is described as "a no-op". Wh

Re: sorting two arrays

2008-07-29 Thread Steven Noyes
You might consider changing how you store data just a little bit. Instead of having two arrays, a single array with arrays as objects. For example, you currently have: Array 1 Array 2 - --- | | | | -

Re: looking for a crc code

2008-06-14 Thread Steven Noyes
hi Angelo. This is a trickier question than it sounds. The first thing is you really have to understand is what you are after: 1) do you have an 8 bit, 16 bit or 32 bit CRC? 2) are you constrained to match someone else or is this just for your comms? 3) are you going table driven (recom