Reputation: 213
Hey guys I'm building an iphone app where I show a listing with a couple images and information, just like the app store. Now I'm trying to achieve an effect like this one :
Take a look a the app images, they have like this nice "3D feeling" and also some shadows. How can I achieve this? Is there any framework out there that makes this process simple? It doesn't need to look identical but I want to a find a way to make my logos be more sharp and shiny.
Thank you very much.
Upvotes: 0
Views: 849
Reputation: 534958
The "shiny" effect is a lot easier to achieve now that you can do Core Image filters on iOS:
Upvotes: 0
Reputation:
Yes, and it's called CoreAnimation.
If you want to, for example, give a shadow effect to an UIView instance, use this:
#import <QuartzCore/QuartzCore.h>
view.layer.shadowOffset = CGSizeMake(8, 8);
view.layer.shadowColor = [UIColor blackColor].CGColor;
view.layer.shadowOpacity = 0.667;
view.layer.shadowRadius = 4;
Upvotes: 3