func isInstagramInstalled() -> Bool {
return UIApplication.shared.canOpenURL("instagram://app".url())
}
func isFacebookInstalled() -> Bool {
return UIApplication.shared.canOpenURL("fb://".url())
}
func isKakaoInstalled() -> Bool {
return KLKTalkLinkCenter.shared().isAvailable()
}