AGMedallionView is a picture view control just like the one that Apple is using at the login screen in Mac OS X Lion.
Copy over the files from the Classes folder to your project folder.
Wherever you want to use AGMedallionView, import the appropriate header file and initialize as follows:
#import "AGMedallionView.h"
AGMedallionView *medallionView = [[AGMedallionView alloc] init];
medallionView.image = [UIImage imageNamed:@"sample"];
[self.view addSubview:medallionView];
[medallionView release];
Let me know if you're using or enjoying this product.