본문 바로가기

ios83

[iOS] frame과 bounds의 차이 ※ 참조 iOS ) Frame과 Bounds의 차이 (1/2) 안녕하세요 :) Zedd입니다. 지금 다른 글을 쓰고있는데, 쓰면 쓸수록 쓸 주제가 많아집니다...급 이 글을 쓰게 됐어요 XD.. 아무튼 오늘은 저도 궁금했던 Frame과 Bounds의 차이를 알아볼거에요 :) 다음 zeddios.tistory.com Apple Developer Documentation developer.apple.com Frame 해당 UIView의 SuperView에 대응한 좌표 시스템을 가진다. 즉 SuperView의 origin으로 부터의 x좌표, y좌표 거리를 표시해준다. frame의 size는 항상 해당 뷰가 들어가있는 사각형 영역의 사이즈를 표시해준다. 즉, view를 회전을 했을 때에도 해당 뷰가 들어가는 사.. 2021. 1. 21.
[iOS Issue] UICollectionView cell에서 SDWebImage 사용 시 잘못된 이미지 로드되는 이슈 Cell being populated with wrong images · Issue #1024 · SDWebImage/SDWebImageHi, I'm currently using this code to set-up my images: [cell.coverImage sd_setImageWithURL:[self.dataInJSONModel.Content[indexPath.row] CoverImage] placeholderImage:[UIImage imageNamed:@"i...github.com UICollectionView cell에서 SDWebImage를 사용할 때 cell을 scroll할 때마다 잘못된 이미지들이 로드되어 보이는 현상이 발생한다. Cell Class에 prepareForReuse메서드를.. 2021. 1. 21.
[iOS] UIView의 clipToBounds Apple Developer Documentation developer.apple.com UIView의 clipToBounds view안에 있는 subview가 view의 bounds를 초과하는 크기를 가질 때, view 영역 안의 크기만 보여줄 것인지, subview 전체를 보여줄 것인지를 결정하는 속성 true로 설정하면 view bound 영역 안에 있는 subview의 모습만 보이게 된다. 2021. 1. 21.
[iOS] UIViewController Life Cycle (생명주기) Apple Developer Documentation developer.apple.com UIViewController Life Cycle (생명주기) 1. init 새롭게 초기화된 UIViewController객체를 생성한다. 2. loadView controller과 관리하는 view를 생성한다. 아직 view가 메모리에 load 되기 전에 호출된다. 3. viewDidLoad view가 메모리에 load 된 직후에 호출된다. 모든 life cycle 중 처음 단 한 번만 호출되기 때문에 여러가지 초기화 작업들을 수행한다. 4. viewWillAppear view가 화면에 보여지기 직전에 호출된다. 다른 화면에 가려졌다가 다시 나타날 때마다 호출된다. 다른 화면에서 되돌아 올 때마다 하고 싶은 작업,.. 2021. 1. 20.