A simple UIView subclass that shows an UIImage with a shadow in a circle.
Posted to put Objective-C Back on the Map again!
You can create an instance of this view using code or IB.
AMPAvatarView *avatar = [[AMPAvatarView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
avatar.image = [UIImage imageNamed:@"avatar"];
[self.view addSubview:avatar];
You can change some properties.
- The image (really?)
- Border with
- Border color
- Shadow radius
- Shadow color
And don't forget to add QuartzCore.framework to your project!
Just a simple example to show how you can change a couple of things.