Skip to content

Instantly share code, notes, and snippets.

typedef NS_OPTIONS(NSUInteger, LSRBorderSide) {
LSRBorderSideNone = 1 << 0,
LSRBorderSideLeft = 1 << 1,
LSRBorderSideRight = 1 << 2,
LSRBorderSideBottom = 1 << 3,
LSRBorderSideTop = 1 << 4
};
@RobertHaworth
RobertHaworth / AppDelegate.m
Created June 6, 2014 22:34
Progressive track of new developers iterating NSArray in Obj-C.
//
// AppDelegate.m
// testApplication
//
// Created by Robert Haworth on 6/6/14.
// Copyright (c) 2014 Robert Haworth. All rights reserved.
//
#import "AppDelegate.h"