티스토리 뷰
func currentTimeInMilliSeconds()-> Int {
let currentDate = Date()
let since1970 = currentDate.timeIntervalSince1970
return Int(since1970 * 1000)
}
'macOS, iOS' 카테고리의 다른 글
[iOS] userNotification 함수 update for iOS13 (0) | 2021.06.05 |
---|---|
[iOS] AppDelegate에서 푸시 받아서 SceneDelegate에서 뷰 세팅해주기 (0) | 2021.06.04 |
[iOS] 인스타그램에서 열기 (0) | 2021.06.01 |
[iOS] 앱 푸시 동의 여부 받아오기 (0) | 2021.06.01 |
[iOS] 애플 로그인 - SwiftUI (1) | 2021.05.28 |