Skip to content

Instantly share code, notes, and snippets.

View vaghul's full-sized avatar

Vaghula krishnan vaghul

View GitHub Profile
@vaghul
vaghul / photo.swift
Created September 5, 2016 08:43
Snippet to get the last taken photo in iOS
import UIKit
import Photos
// I like to typealias my blocks, makes for easier reading
typealias ImageCallback = (UIImage? -> Void)
func fetchLastPhoto(resizeTo size: CGSize?, imageCallback: ImageCallback) {
let fetchOptions = PHFetchOptions()
fetchOptions.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: false)]