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
public class RoundedShadowView: UIView { | |
public var cornerRadius: CGFloat = 2.0 { | |
didSet { | |
setNeedsLayout() | |
} | |
} | |
public var fillColor: UIColor = .white { | |
didSet { |
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
alias xcdd='rm -rf ~/Library/Developer/Xcode/DerivedData/*' | |
alias xctp='xcbuild_time_profiling' | |
function xcbuild_time_profiling { | |
local fileToOpen=''; | |
local is_workspace=true; | |
local scheme=$1; | |
if [ -n "$scheme" ] | |
then |