When logging in with fb, the following UIView displays the users profile picture
@IBOutlet var profilePictureView : FBProfilePictureView
How would I get the image so that I can use it elsewhere/save it to a server?
Here is the fb documentation on FBProfilePictureView (in Objective-C) https://developers.facebook.com/docs/reference/ios/current/class/FBProfilePictureView Here is a swift port of the fb login, which works well. https://www.snip2code.com/Snippet/68653/This-is-a-swift-port-of-the-official-Fac And here is the same code, but in objective C How can I convert FBProfilePictureView to an UIImage?