# UICollectionView

[Swift] StatusBar 클릭시 UICollectionView Cell의 AutoLayout이 깨질 때
아이폰 맨 위 상태바를 클릭했을 때 Cell의 위치가 이상한 곳으로 가면서 깨지는 현상

학생 얼굴 좀 봅시다! (by UICollectionView)
첫 번째 기능으로 학년, 반, 번호를 통해 학생을 조회하기 위한 화면을 만들어 봤습니다.
[Swift] CollectionVeiw로 ImagePager 만들기 (1)
사용 된 라이브러리 snapKit UIKit Foundation 1. 기초단계 1-1. ViewController 설정하기 1-2. Cell 설정하기. 1-3. Delegate 설정하기

UICollectionViewCompositionalLayout in iOS 13+
UICollectionViewCompositionalLayout > - compositional layout은 collectionView layout의 한 유형이다. > > 구성 가능(composable)하고 유연(flexible)하며 빠르도록(fast) 설계되었기 때

UICollectionView Basics
콘텐츠를 화면에 표시하기 위해 collectionView는 다양한 object와 협력한다.app에 의해 제공되는 사용자 지정 object와 (ex: app은 collectionView에 표시할 item의 개수를 알려주는 data source를 반드시 제공해야 한다.)
[WWDC20] Modern Cell Configuration: Basics of Configuration
Bagics of Configuration iOS 13에서 tableView의 Cell을 구성했던 방법 iOS 13에서는 cell에 내장되어 있는 imageView와 textLabel 속성을 사용해 image와 text를 구성했다. > 새로운 configuratio
[iOS] (WWDC) What's New in UICollectionView in iOS 10 정리
What's New in UICollectionView in iOS 10 - 2016 정리

May 28, 2021, TIL (Today I Learned) - LifeCycle of CollectionView, reloadData
Screen Shot 2021-05-29 at 10.23.52 PMCellForItemAtIndexPath: dataSource 메서드를 reuse cell이 생성되고 prepareForReuse 메서드를 호출해서 cell 재사용 준비작업을 수행한다. 해당 과정에서 c

May 20, 2021, TIL (Today I Learned) - Pagination(infinite Scrolling)
페이스북, 트위터와 같은 소셜미디어 앱을 들어가보면 유저가 feed를 스크롤링할 때 끊임 없이 데이터를 불러오는 것을 볼 수 있습니다. 이런 기술은 어떻게 구현이 되는지 한 번 끄적여보면서 알아가 보겠습니다.추가 예정

May 17, 2021, TIL (Today I Learned) - Collection View vs TableView
layout: posttitle: "May 17, 2021, TIL (Today I Learned) - Collection View vs TableView"summary: "iOS 커리어 스타터 캠프 2기"author: inwoodevdate: '2021-05-17
UICollectionView
"An object that manages an ordered collection of data items and presents them using customizable layouts."

CollectionView isSelected 문제 해결
UICollectionView Cell에서 나타나는 isSelected문제를 해결해봤습니다.

UICollectionView Programmatically Practice
먼저 보여줄 데이터를 생성하겠습니다. 셀 사이즈를 크게 해도 재사용이 가능한지 확인하기 위해서 충분히 생성하겠습니다.속성을 비워둔 CollectionView 객체를 생성합니다.다음은 Custom Cell 생성입니다. label 하나만 추가할 것이며, label의 위치와

AutomaticDimension Programmatically
와... 이틀간 삽질이 빛을 발했다...오기가 생겨서 끝까지 붙잡고 있었더니 해결~!뿌듯하니까 기록하도록한다.음음... 내가 만들고 싶은 뷰는 말이지... CollectionView를 TableView에 넣고 싶단 말이다.아 여기까지 들으면 쏘이지하지? 근데 조건은 C

UICollectionView with XIB Practice
스토리보드의 View Controller에 Collection View를 추가하고 Auto Layout도 설정합니다.Cell을 만들기 위한 파일을 생성합니다. XIB를 사용할 것이기 때문에 Also create XIB file 빈 칸을 체크합니다.XIB 파일을 보면 아
[iOS] UICollectionView - 2
var delegate: UICollectionViewDelegate? collection view의 delgate object. 컬렉션 요소와 사용자간 상호작용을 처리한다.UICollectionViewDelegate: collection view의 동작을 관리하는