Re: iOS Category to match OS X category

2014-10-07 Thread Kevin Meaney
Thanks Jens, I've just implemented a different solution as I since found that CIFilter instance on iOS has a name read only property which I hadn't noticed. So instead I've replaced the array of filters in my filter chain object with an array of dictionaries. Each dictionary has a name and a fi

Re: iOS Category to match OS X category

2014-10-07 Thread Jens Alfke
> On Oct 7, 2014, at 1:09 AM, Kevin Meaney wrote: > > This category is not in any of the iOS frameworks as far as I can tell. So it > looks like the only way I can get the same behaviour on iOS is using > associated objects/references. That sounds reasonable. > I'm not comfortable with this