13,650 reputation
13459
bio website cimgf.com
location Colorado
age 40
visits member for 4 years, 2 months
seen 3 hours ago
stats profile views 1,073

Co-Author of "Cocoa is My Girlfriend" blog and Core Animation: Simplified Animation Techniques for Mac and iPhone Development from Addison Wesley. Developer of PhotoGrab an iPhoto library browser for iPad, Cumulus an Amazon S3 client for iPhone, and Viddlore a Viddler.com upload client for iPhone.


May
14
comment Drawing in another thread with CGImage / CGLayer
@RinatKhanov I suggest you ask your question from a higher level and see what people think is the best approach. From your question it sounds to me like you could just composite multiple Core Animation layers and let it do all the hard work for you. I've created many custom collection view cells and they've used things like clipping stroking and opacity. You might want to look at CALayer's shouldRasterize property. It will improve drawing performance. You might even consider using images instead of drawing programmatically as this can improve performance as well.
May
9
comment iPhone iOS how to draw text on a CALayer using drawLayer:inContext:?
You could just add a CATextLayer as a sublayer of your layer.
Apr
16
comment Create an Animation with CoreAnimation similar to the Safari download animation
Can you clarify what you mean? If you're referring to the animation where the item jumps from the page down into the dock, you can take a look at Apple's documentation on keyframe animation that shows how to animate along a path here: developer.apple.com/library/mac/documentation/Cocoa/Conceptual/…
Apr
11
comment CoreAnimation keeping track of origin values
I'm not sure what you mean. A change to the frame as a transform would be the scale transform. If you want to move x and y, you could use a translation transform instead, CGAffineTransformMakeTranslation(x, y).
Apr
10
comment iPad - Parsing an extremely huge json - File (between 50 and 100 mb)
If you want to use a stream parser, then yes, get YAJL. However, I would try David's approach #1 first. It will be less hassle if you can get it working with your data set. YAJL I suggest as a last resort.
Apr
10
comment iPad - Parsing an extremely huge json - File (between 50 and 100 mb)
David beat me to it. Totally agree with him. I've used both approaches and had some success with both on files larger than 100MB and records numbering in the hundreds of thousands--though ultimately I went with a paging approach and had our server people break it up for me. That solved all of my issues. It's ideal if you can just use something like NSJSONSerializtion or JSONKit since they're really fast, however, you have to work with what you get.
Apr
3
comment How do I detect a touch event on a moving UIImageView?
I updated my answer to try to address your question.
Apr
2
comment How do I detect a touch event on a moving UIImageView?
Yes. That's exactly how it would work. If you read the docs for hit testing a core animation layer, it says Returns the farthest descendant of the receiver in the layer hierarchy (including itself) that contains the specified point. developer.apple.com/library/mac/documentation/graphicsimaging/…:
Apr
1
comment After rotating a CALayer using CABasicAnimation the layer jumps back to it's unrotated position
9 times out of 10, this is the wrong answer. You need to actually set layer's property. Setting fillModeForwards and removedOnCompletion give the appearance of change, however, if you query the layer at the end of the animation, you'll see that its property is still set to the original value. That's rarely (if ever) what you want: stackoverflow.com/questions/3581804/…
Mar
27
comment iOS UIImagePickerController result image orientation after upload
Just to follow up with an earlier comment, according to that same Apple documentation link: developer.apple.com/library/ios/#documentation/uikit/reference/… In iOS 4 and later, you may call this function from any thread of your app.
Mar
15
comment Detecting which frame being displayed in CAKeyframeAnimaton
Yes. Your drawInContext is getting called at the layer's frame rate. You'll have to watch for changes to the counter value.
Mar
14
comment Animating a UIView without using CoreAnimation
What you're trying to do can be accomplished with Core Animation. You should look at creating a custom timing function. Take a look here: stackoverflow.com/questions/5161465/…
Mar
13
comment Cut Out Shape with Animation
Nice idea with the large translucent layer, Rob. +1
Mar
7
comment CAKeyframeAnimation delay before repeating
Clever solution. Nice and clean. You should accept your own answer. ;-)
Mar
7
comment How to use Core Graphics Layer Drawing
You could try UIColor's colorWithPatternImage: stackoverflow.com/questions/5206207/…
Mar
1
comment Dynamic UIWebView Link
What happens if you paste the same URL into Safari? Does it load anything? Validate that your URL works in a standard browser before testing it in your code.
Feb
26
comment Drawing a shape in a UIImageView IOS
How are you calculating it now? Use the same technique. It should be the same. Just set the position property for each circle/shape layer you create.
Feb
21
comment Posting http JSON request using NSJSONSerializer iOS
No problem. Glad it was helpful.
Feb
18
comment Storing arbitrary metadata with a plain-text file
@KenThomases Thanks for this code. Very helpful. Just one nit. In the getter snippet, you have NSData *data = [NSMutableData dataWithLength:len]. This causes a compiler error. If you change the declaration to NSMutableData *data = [NSMutableData dataWithLength:len], everything is perfect. Thanks again for the concise answer. Best regards.
Feb
16
comment adding subview to main uiview in selector
Did you provide a CGRect with an appropriate size to your UIImageView initWithFrame:? Are you sure the image you're passing it is not nil? Can you elaborate on what you mean when you say "it did not work"?