iOS UICollectionView programmatically swift UICollectionView UICollecitonView is collection interface like list. Different from list, number and size and alignm... 2020.09.06 iOS
iOS Swift Const file Const File Creating application, there are a lot of fix parameters. Of course, if this is only in file, we just u... 2020.07.20 iOS
iOS XCFramework iOS Framework When we want to create library for iOS, we have several choices Static Library (Objective-C)Static ... 2020.07.09 iOS
iOS Swift URLSession – Network URLSession URLSession is network API provided by Apple. Simple Usage In this time cover simple API. ... 2020.07.04 iOS
iOS Swift – Codable Codable Codable = Decodable + Encodable (Apple Documentation) Codable supports Json <-> Model(Class, Struct) ... 2020.07.04 iOS
iOS SwiftUI – draw Path Draw Path This sample is inspired by Apple Documentation Draw something using Path and use this View in other Par... 2020.06.16 iOS
iOS Swift – guard Swift Document How to use guard? Swift documentation (link) explain details If let and guard This is an ex... 2020.06.13 iOS
iOS Swift class vs struct Class vs Struct Which to use? In swift programming, one of big questions is class and struct. Pure data -> str... 2020.06.13 iOS
iOS SwiftUI – List 2 Filter Filtered List This example is inspired by Apple Documentation (Handling User Input) This sample covered How t... 2020.06.13 iOS
iOS SwiftUI – Toggle Switch Toggle Toggle in SwiftUI is equivalent UI as UISwitch for UIKit. It is on/off switch But, different part is ho... 2020.06.13 iOS