swift86 [Swift] Extension에 Stored Property를 못 넣는 이유 Swift Interview Questions and Answers In this tutorial, you’ll work through a series of Swift-specific interview questions and answers. www.raywenderlich.com Why does Swift not allow stored properties in extensions? I've been trying to find the best way to implement a stored property in an extension, and came across this question: Swift extension stored properties alternative. However, I have no.. 2022. 9. 27. [Swift] JSON Decoding, Encoding [Swift] Codable - Decoding 방법 이전 포스트는 Codable의 Encodable에 대해 알아 보았습니다. 이번 포스트는 Codable의 Decodable에 대해 알아보도록 하겠습니다. Decodable JSON 데이터를 디코딩 하는 방법에 대해 알아보도록 하겠습니다. De jinnify.tistory.com Decodable을 이용한 JSON 디코딩 import Foundation extension Data { func decode(_ type: T.Type) -> T? where T : Decodable { do { let result = try JSONDecoder().decode(T.self, from: self) return result } catch { print(error.. 2022. 9. 5. [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 예제] UICollectionView에서 cell 수직방향 정렬 UICollectionView에서 cell 수직방향 정렬 UICollectionView 사용 시, 기본적으로 같은 line에 있는 cell들은 모두 중앙 정렬이 된다. 하지만 CollectionView를 사용하다보면 중앙 배치보단 상하, 혹은 좌우 한 방향으로 정렬시키는 경우가 훨씬 많다. 그래서 Custom CollectionViewFlowLayout을 만들어서 수직 스크롤 시 한 방향으로 정렬시킬 수 있도록 해보았다. https://github.com/Sky-Titan/TSCollectionViewVerticalAlignLayout GitHub - Sky-Titan/TSCollectionViewVerticalAlignLayout: Swift UICollectionView custom Layout fo.. 2022. 8. 6. 이전 1 2 3 4 5 ··· 22 다음