IOS
-
UICollectionViewDiffableDataSource, UITableViewDiffableDataSource 로 깔끔한 콜렉션 뷰 데이터 관리하기iOS 2020. 2. 26. 01:36
서문 iOS 13 이상에서는 'UITableViewDiffableDataSource, UICollectionViewDiffableDataSource'이 새로 생겼습니다. https://developer.apple.com/documentation/uikit/uitableviewdiffabledatasource 기존에 테이블뷰와 콜렉션뷰의 데이터는 적당한 NSObject 클래스에, UICollectionViewDataSource 을 설정해 주는 방식으로 구현하고 있었습니다. 데이터가 바뀌면, 어느 indexPath 가 바뀌었는지 개발자가 판단하여 insertItems(at:) 등의 적절한 함수를 호출하곤 했습니다. 그런데 만약, 개발자가 판단한 데이터의 변동과, 실제 변동의 값이 다르다면... 이런 식으로,..
-
IOS 에서 머터리얼 디자인의 물결 이펙트 버튼 만들기iOS 2019. 12. 26. 01:35
안드로이드의 기본 컴포넌트 버튼 Button의 경우, 별다른 설정을 하지 않아도 클릭할 때 물결 모양이 나타납니다. 반면에, iOS 버튼 UIButton의 경우, 클릭할 시에 물결 설정이 없습니다. https://developer.apple.com/documentation/uikit/uicontrol/1618231-ishighlighted isHighlighted - UIControl | Apple Developer Documentation Instance Property isHighlighted A Boolean value indicating whether the control draws a highlight. Declarationvar isHighlighted: Bool { get set } Disc..