13,680 reputation
13459
bio website cimgf.com
location Colorado
age 40
visits member for 4 years, 2 months
seen yesterday
stats profile views 1,074

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.


Jan
26
comment how to position a rotating CAShapeLayer at certain point in UIImageView?
Looks like you also neglected to set the bounds of your shape layer. [circle setBounds:circleRect]; so I'm surprised it's displaying at all.
Jan
21
answered Core animation from left to right
Jan
16
asked Enterprise Distribution Profile Update Without App Update
Jan
16
comment UIBezierPath Subtract Path
This looks really promising for what I'm trying to do, however, UIBezierPath and NSColor don't mix since one is iOS and the other is OSX. Do you, by chance, have a more complete example that works on iOS?
Jan
15
revised Move CALayer via UIBezierPath
edited tags
Jan
15
answered Move CALayer via UIBezierPath
Jan
15
awarded  objective-c
Jan
14
revised Can't add a corner radius and a shadow
added 395 characters in body
Jan
14
comment Can't add a corner radius and a shadow
I think you're right, @nielsbot, however, the question is about displaying both a corner radius and a drop shadow at the same time. I was simply wanting to note that it's no longer necessary to set a bezier path to achieve that. I'll add that clarification to the update. Thanks.
Jan
14
revised Can't add a corner radius and a shadow
The answer is no longer accurate. This update addresses that.
Jan
11
answered Implementing the iOS Facebook App photo viewer
Jan
2
awarded  Notable Question
Dec
11
comment IPhone: How to put UITextField and UITableView on same View? recomended way
@MweyaMutsvene What he means is that if you use a UITableViewController in your storyboard, you can't add additional controls in Interface Builder. You can add the search bar to the header (or footer, I think) of the table view, but if you wanted anything else, say above/outside the table view for example, you have to change your view controller type to a standard UIViewController and then IB will allow you to add all of the controls you're interested in displaying. His response has nothing to do with whether it would support delegate and datasource.
Dec
7
awarded  Good Answer
Dec
6
awarded  Good Answer
Nov
26
comment Can't add a corner radius and a shadow
@PaulBatum Another trick I've used is to use multiple layers. Use masksToBounds:YES on your image layer, and then create a layer behind the image layer that provide the shadow.
Nov
16
answered Core Data - One to Many relationship with object(one) and UIImages(many), storing and fetching
Nov
16
comment Core Data import large amount of data
It might be a premature optimization to worry about it at this point. The rule of thumb is don't worry about it if and until you need to. The Instruments profiling tools will tell you everything you need, but with only 740K, I wouldn't be too worried about it. I've processed in somewhere around 8-10MB worth of JSON before and it went just fine. Ultimately I did have to optimize some things, but I didn't know what those things were until I started seeing issues.
Nov
12
awarded  Nice Answer
Nov
8
comment UIView Rounded Corners Without a Mask Layer
It may be confusing when you say "create a bezier path... and then fill it". Do you mean overriding drawRect or do you mean using a CAShapeLayer. Using a CAShapeLayer is probably simpler, but he would need to benchmark the two options to see which performs better.