[WARNING] Null passed to a callee that requires a non-null argument
2020. 12. 3. 16:43ㆍ개발자료/iOS
반응형
# 아래와 같이 선언하고 dealloc 에서 nil을 대입했을때 발생(Xcode 11)
// *.h
@property (nonatomic, retain) NSString *m_strArgs;
// *.m
- (void)dealloc{
self.m_strArgs = nil;
}
# nil을 대입할 수 있게 선언을 아래와 같이 변경
// *.h
@property (nonatomic, retain, nullable) NSString *m_strArgs;
반응형
'개발자료 > iOS' 카테고리의 다른 글
[Application] The app delegate must implement the window property if it wants to use a main storyboard file. (0) | 2021.03.09 |
---|---|
[Swift] String (0) | 2020.12.16 |
Provision 확인 명령 (0) | 2020.12.02 |
Autolayout - 컨트롤 상하높이 반절(50%)씩 차지하게 하기 (0) | 2020.12.01 |
[Swift] Bridge Header 만들기 (0) | 2020.11.30 |