Skip to content

Instantly share code, notes, and snippets.

@gesabo
gesabo / gist:a29c015692c8d657cfe9c7fb1fc54707
Created April 8, 2016 15:06
PDKClient.H (with my edits)
// Copyright (c) 2015 Pinterest. All rights reserved.
// Created by Ricky Cancro on 1/28/15.
@import Foundation;
#import <AFNetworking/AFNetworking.h>
/**
* Permissions that you can request a user to authorize.
*/
extern NSString * const PDKClientReadPublicPermissions;
@gesabo
gesabo / gist:bcf4d4f7b729e14a3d2dc9249bc8b54e
Last active April 8, 2016 20:35
PDKClient.M (with my edits)
// Copyright (c) 2015 Pinterest. All rights reserved.
// Created by Ricky Cancro on 1/28/15.
#if TARGET_OS_IPHONE
@import UIKit;
#endif
#import "PDKClient.h"
#import "PDKBoard.h"
#import "PDKCategories.h"