Skip to content

Instantly share code, notes, and snippets.

View sgoodwin's full-sized avatar

Samuel Goodwin sgoodwin

View GitHub Profile
@sgoodwin
sgoodwin / API_Doc.swift
Last active March 21, 2018 19:08 — forked from projectxcappe/API_Doc.swift
API_Doc.swift
//Login
Login {
let email: String
let fb_id: String //when fb is implemented
let password: String
let password_reset_code: String
let phone_number: String
let user_id: String
}
NSInteger assetCount = [group numberOfAssets];
if(assetCount <= 0){
return;
}
[group setAssetsFilter:[ALAssetsFilter allPhotos]];
NSIndexSet *indexes = [NSIndexSet indexSetWithIndex:assetCount-1];
// instead of this:
#import <UIKit/UIKit.h>
@interface GOCustomView : UIView
@property(nonatomic, retain) UIColor *bgColor;
@property (nonatomic,retain) NSMutableArray *xArr;
@end