LLDB 디버깅 기법의 image lookup

2316 단어
error: instance method 'methodName' has incompatible result types in different translation units ('methodName' (aka 'NSMutableDictionary *') vs. 'NSMutableDictionary *') instance method 'methodName' also declared here
(lldb) po self
error: instance method 'operationDictionary' has incompatible result types in different translation units ('SDOperationsDictionary *' (aka 'NSMutableDictionary *') vs. 'NSMutableDictionary *')
instance method 'operationDictionary' also declared here
(lldb) 

개발 과정에서 디버깅 문제에 부딪혔다.매번 포의 한 종류와 한 종류의 방법이 있을 때마다 항상 위의 힌트를 주어 명령이 작용하지 않는다.하지만 인터럽트 컨트롤러는 데이터를 볼 수 있다.LLDB po 때 문제가 생겼어요.
image lookup 호출 – name methodName
(lldb) image lookup -name operationDictionary
        Summary: inke`-[UIView(NTalkerWebCacheOperation) operationDictionary] at UIView+NTalkerWebCacheOperation.m:16        Address: inke[0x000000010156ebc0] (inke.__TEXT.__text + 22446016)
        Summary: inke`-[UIView(WebCacheOperation) operationDictionary] at UIView+WebCacheOperation.m:25
(lldb) 

이 출력을 보고 이유를 확연히 알았다.우리가 제3자 라이브러리를 가져왔기 때문입니다. 이 라이브러리는 정적 라이브러리 (.a 라이브러리) 입니다.이 라이브러리 안에도 UIVIEW의 분류를 NTAKER Web Cache Operation이라고 하는데, 그 안에 Operation Dictionary라고 하는 방법이 있는데, 이 분류는 드러나지 않고 완전히 내부에서 사용된다.그리고 SDWebImage 라이브러리를 가져왔습니다. 이 라이브러리에도 분류가 있습니다.
@implementation UIView (WebCacheOperation)

- (SDOperationsDictionary *)operationDictionary {
    SDOperationsDictionary *operations = objc_getAssociatedObject(self, &loadOperationKey);
    if (operations) {
        return operations;
    }
    operations = [NSMutableDictionary dictionary];
    objc_setAssociatedObject(self, &loadOperationKey, operations, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
    return operations;
}

이 두 가지 분류 방법은 이름이 바뀌었다.숨기다a 정적 라이브러리 안.
여기서 LLDB 디버그 명령 소개---image lookup
  • image lookup – name, image lookup-n으로 약어..
  • 우리가 방법이나 기호의 정보를 찾고 싶을 때, 예를 들어 파일의 위치 등..
  • image lookup -name, 특정한 제3자 SDK나 정적 라이브러리를 가져오기 때문에 같은 이름의category 방법이 생겼습니다. (만약 실현된다면 문제가 크지 않습니다. 그러나 두 행동이 일치하지 않으면 이상한 버그를 초래할 수 있습니다.)참고로 만약에 어떤 종류가 여러 개 확장된다면 같은 방법이 있습니다. 앱이 시작할 때 어떤 실현을 선택하고 일단 실행을 선택하는 과정에서 이 선택의 실현을 계속 실행할 것입니다

  • 관심 있으시면 LLDB 디버깅 기술

    좋은 웹페이지 즐겨찾기