This file contains hidden or 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
| 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) |
This file contains hidden or 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
| AnnotationsProcessor |