This assumes that you have the data contained in an NSData object I will call pictureData.
UIImage* profilePicture = [UIImage imageWithData:pictureData];
profilePictureView.image = profilePicture;
I prefer more deterministic memory allocation, however:
UIImage* profilePicture = [[UIImage alloc] initWithData:pictureData];
profilePictureView.image = profilePicture;
[profilePicture release];
If you have the picture on disk, one cool trick is to memory-map it to avoid memory allocation:
NSData* picData = [NSData alloc] initWithContentsOfMappedFile:@"profile.jpg"];
UIImage* profilePic = [[UIImage alloc initWithData:picData];
[picData release];
profilePicView.image = profilePic;
[profilePic release];