This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// AppDelegate.m | |
// testApplication | |
// | |
// Created by Robert Haworth on 6/6/14. | |
// Copyright (c) 2014 Robert Haworth. All rights reserved. | |
// | |
#import "AppDelegate.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef NS_OPTIONS(NSUInteger, LSRBorderSide) { | |
LSRBorderSideNone = 1 << 0, | |
LSRBorderSideLeft = 1 << 1, | |
LSRBorderSideRight = 1 << 2, | |
LSRBorderSideBottom = 1 << 3, | |
LSRBorderSideTop = 1 << 4 | |
}; |