2019 Monthly I Learned - kirseia/study GitHub Wiki

꾸준할 수 있을것인가...
  • Today I Learned (TIL)은 무리일것 같아서 월별로 -_-);
2019.12
AVMutableCompositionTrack.insertTimeRange 는 emptyTimeRange를 밀어내고 'insert' 된다.
emtpyTimeRange가 0~50초가 있을 때
insertTimeRange 를 10~20초 구간에 하면... 전체 timeRange는 0~10(empty), 10~20(insert된..), 20~60(empty)가 되버림
시작 시간 순서대로 insert 하지 않으면 emtpyTimeRange가 밀려나는 것을 확인할 수 있습니다...
  • ViewController 가 최초로 보여질 때 처리
  • collectionView.reloadItems 애니메이션 없이 하기
UIView.performWithoutAnimation {
    self.collectionView.reloadItemsAtIndexPaths(indexPaths)
}
  • collectionView.scrollToItem 애니메이션 길이 조정
UIView.animate(withDuration: 5, animations: { [weak self] in
    self?.collectionView.scrollToItem(at: IndexPath(item: 10, section: 10), at: .middle, animated: false) // false 가 핵심
})
2019.11
2019.10
2019. 9
let array1 = [1, 2, 3]
let array2 = [4, 5, 6]

let flattenArray = [array1, array2].flatMap({ (element: [Int]) -> [Int] in
    return element
})
2019. 8
2019. 7
2019. 6
2019. 5
2019. 4
2019. 3
2019. 2
2019.1
PresentedViewController - 자신이 호출한 VC
PresentingViewController - 자신을 호출한 VC
Inbox