iOS9에서 weak의 변경 사항

1291 단어

약자에게 bye-bye를 인용하다


ARC 모드에는 강한 참조와 약한 참조라는 두 가지 참조가 있습니다.이 두 가지는 모두 바늘을 설명하는 데 쓰인다. 한 대상이 가지고 있는 바늘 대상 (strong, 보존 계수), 또는 자신의 바늘 대상을 가지고 있지 않거나 (weak, 보존 계수는 변하지 않는다).따라서 약한 인용은 계수기를 0으로 되돌릴 수 있으며 대상이 dealloc 방법을 실행할 때 바늘이 0이라는 것을 의미한다.

iOS8 이전 사용

// UITableView iOS 8  
@property(nonatomic, assign) id dataSource
@property(nonatomic, assign) id delegate
// UICollectionView iOS 8  
@property(nonatomic, assign)id delegate
@property(nonatomic, assign) id dataSource

그러나 iOS9에서는 assign 대신 weak,nullable를 사용했다
// UITableView iOS 9 
@property(nonatomic, weak, nullable) id dataSource
@property(nonatomic, weak, nullable) id delegate
// UICollectionView iOS 9 
@property(nonatomic, weak, nullable) id delegate
@property(nonatomic, weak, nullable) id dataSource

주의: 그러나 시스템의 호환성을 고려하여 그때 사용할 때 판단을 해야 합니다!

좋은 웹페이지 즐겨찾기