Skip to content

Instantly share code, notes, and snippets.

import UIKit
enum SeparatorType {
case Horisontal
case Vertical
}
let kTotalSize: CGFloat = 44; // the total height of the separator (including parts that are not visible
let kVisibleSize: CGFloat = 10; // the height of the visible portion of the separator
let kMargin: CGFloat = (kTotalSize - kVisibleSize) / 2.0; // the height of the non-visible portions of the separator (i.e. above and below the visible portion)
AnnotationsProcessor