I created a UIView inside the main view of a view controller using the storyboard editor and changed its class to FBProfilePictureView.

I created an outlet:
@property (weak, nonatomic) IBOutlet FBProfilePictureView *userImage;
However, when I refer to the userImage object in code it reports itself as a UIView.
NSLog(@"userImage class: %@", [userImage class]);
Produces:
2012-08-28 17:52:22.196 FBTestApp[6230:707] userImage class: UIView
What am I missing?