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
/** | |
* Width of hairline (1px on real device screen) | |
* The dppx of screens can be found here http://dpi.lv/ | |
* | |
* @return CGFloat number to be set for "1px" | |
*/ | |
+ (CGFloat)hairLineWidth { | |
if ([UIScreen mainScreen].bounds.size.width == 414.f) { // Plus | |
return 1.f / 2.46f; // 2.46 is the dppx of plus screens | |
} else { |