David Rönnqvist

less info
10,578 reputation
32243
bio website ronnqvi.st
location Stockholm, Sweden
age 25
visits member for 2 years, 3 months
seen 5 hours ago
stats profile views 878

I'm a graphics and animations development enthusiast from Stockholm, Sweden.

I fell in love with Mac and iOS development with the introduction of OS X 10.5 Leopard and the iPhone SDK.

When I'm not writing code I practice and teach kung fu.


6h
awarded  Quorum
12h
comment Rotating a view around a fixed point - ObjectiveC
my article here may also help you understand how the anchor points works.
12h
comment Rotating a view around a fixed point - ObjectiveC
@CharlesD'Monte the anchor point is in the unit coordinate space (normalized). Try dividing x by the width and y with the height to get two values between 0 and 1 and use that as the anchor point.
12h
comment Loading Adobe Illustrator(.ai) file
Cool. Seems a bit fragile though. What would happen if the .ai file contained something that is not supported by .pdf?
15h
comment Rotating a view around a fixed point - ObjectiveC
What is triangle_top_left in your code? Is it normalized (between 0 and 1)?
17h
comment Gradient effect to left half portion of UITableViewCell in iOS
What is wrong with setting another frame that is smaller?
18h
comment Animating CALayer creates unwanted flicker glitch due to hardware constraints; need alternate ways to animate my view
Do you have any performance problems when running it trough Instruments?
18h
comment How do I subclass UITextField and override drawPlaceholderInRect to change Placeholder color
That underscore makes it look quite private...
1d
comment Animating CALayer creates unwanted flicker glitch due to hardware constraints; need alternate ways to animate my view
Do you have any code to share? Otherwise it's quite hard to help... I guess both the set up of the layers and the actual animation could be helpful
2d
comment Adding arcs to bezierPaths
Calculate them how? Based on what?
2d
comment Ask CATextLayer on top of mask layer
That should also be completely unrelated to the hierarchy. How are you adding the animations to the layer?
2d
comment CAShapeLayer Line drawing
(__bridge CGPathRef)(myLayer) is a layer, not a path... you should be getting the path (as I said above). That is why I called the variable "path"
2d
comment Ask CATextLayer on top of mask layer
That should be unrelated to the hierarchy. How does it fail? Does it get called at all? Is the animation nil? Is the value nil?
2d
comment CAShapeLayer Line drawing
what error is it crashing with and what what are you passing for the intersection?
2d
comment CAShapeLayer Line drawing
@york You got that the path is not the shape, right? It's the path. CGPathRef path = shapeLayer.path;
2d
answered CAShapeLayer Line drawing
2d
comment Adding arcs to bezierPaths
Does the "curves" part (last 3rd) of my post here help you understand Bézier curves?
2d
reviewed Edit suggested edit on CAShapeLayer Line drawing
2d
revised CAShapeLayer Line drawing
improbed fromatiing
2d
comment Ask CATextLayer on top of mask layer
What is it that add the animation to the layer? You can still become the delegate of an animation and use animationDidStart: to react to it. The question is just where you should be the delegate