본문 바로가기

전체 글533

[iOS 예제] SlideToUnlockView SlideToUnlockView 흔히 말하는 '밀어서 잠금해제' 할 수 있는 Slider View를 만들어봤다. https://github.com/Sky-Titan/SlideToUnlockSwiftExample GitHub - Sky-Titan/SlideToUnlockSwiftExample: SlideToUnlock View Swift Example SlideToUnlock View Swift Example. Contribute to Sky-Titan/SlideToUnlockSwiftExample development by creating an account on GitHub. github.com // // SlideToUnlockView.swift // SlideToUnlockExample // // .. 2022. 8. 21.
[iOS] iOS Keychain Basic iOS Security: Keychain and Hashing Security is very important in iOS development. In this tutorial, learn basic iOS Security techniques including accessing the keychain and hashing values. www.raywenderlich.com iOS Keychain User의 email, password, 은행 계좌 정보와 같이 개인적인 정보를 저장할 때, application의 보안은 매우 중요하다. 이 정보들을 잠재적인 위협으로부터 보호하기 위해 Apple은 여러 개의 강력한 API들을 만들어 왔다. Apple 개발자들을 위한 가장 중요한 보안 요소 중 하나.. 2022. 8. 20.
[iOS] Keep Xcode version vs Use version on Disk Difference between "Keep Xcode Version" vs. "Use Version on Disk"? When I use git, I usually change between branches and my iOSBaseSDK.xcworkspace file is modified. When this happen my Xcode shows the following alert: The file "YourProject.xcworkspace"... stackoverflow.com [Solved] Keep Xcode version VS. Use version on disk xct789 Asks: Keep Xcode version VS. Use version on disk I've read all th.. 2022. 8. 20.
[Swift] Weak vs Unowned Reference ARC and Memory Management in Swift In this tutorial, you’ll learn how ARC works and how to code in Swift for optimal memory management. You’ll learn what reference cycles are, how to use the Xcode 10 visual debugger to discover them when they happen and how to break them using an exampl www.raywenderlich.com Weak vs Unowned Reference 둘 다 strong reference와 다르게 객체의 reference count를 증가시키지 않는다. 즉, 객.. 2022. 8. 20.