본문 바로가기

iOS192

[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.
[iOS 예제] CircularCarouselBannerView CircularCarouselBannerView 아래 사진과 같이, 배달의 민족이나 기타 커머스 앱들에서 상단에 무한하게 순환하는 형태의 Carousel Banner를 확인할 수 있는데 이걸 만들고자 한다. 조건은 Circular하게 스크롤했을 때 무한한 순환이 가능해야 되고, auto scroll이 되어야 한다. 기본적인 원리는 아래 그림과 같이 item list의 앞 뒤에 맨 첫 번째 아이템, 맨 마지막 아이템을 하나씩 이어붙인 다음에 ScrollView의 가장 처음, 혹은 마지막에 도착했을 때 contentOffset을 이동시켜서 무한히 이동할 수 있는 것처럼 보이게 하는 것이다. https://github.com/Sky-Titan/CircularCarouselBannerView GitHub - S.. 2022. 8. 19.