Nice programing

iOS 10 오류 : https://mesu.apple.com/assets/에서 자산 유형에 대한 자산 정보를 복사 할 수 없습니다.

nicepro 2020. 12. 25. 22:55
반응형

iOS 10 오류 : https://mesu.apple.com/assets/에서 자산 유형에 대한 자산 정보를 복사 할 수 없습니다.


2016-10-05 13:36:21.383340 MyApp[1867:72704] 0x60000015e350 Copy matching assets reply: XPC_TYPE_DICTIONARY  <dictionary: 0x60000015e350> { count = 1, transaction: 0, voucher = 0x0, contents =
    "Result" => <int64: 0x600000226fe0>: 29
}
2016-10-05 13:36:21.385076 MyApp[1867:72704] 0x608000556420 Daemon configuration query reply: XPC_TYPE_DICTIONARY  <dictionary: 0x608000556420> { count = 2, transaction: 0, voucher = 0x0, contents =
    "Dictionary" => <dictionary: 0x6080005566e0> { count = 1, transaction: 0, voucher = 0x0, contents =
        "ServerURL" => <dictionary: 0x608000556790> { count = 3, transaction: 0, voucher = 0x0, contents =
            "com.apple.CFURL.magic" => <uuid: 0x60800024f720> C1234DCC-2276-5214-B6C1-FD9F5191212
            "com.apple.CFURL.string" => <string: 0x608000241ce0> { length = 30, contents = "https://mesu.apple.com/assets/" }
            "com.apple.CFURL.base" => <null: 0x112e42f20>: null-object
        }
    }
    "Result" => <int64: 0x6080004241e0>: 0
}
2016-10-05 13:36:21.385693 MyApp[1867:72704] [MobileAssetError:29] Unable to copy asset information from https://mesu.apple.com/assets/ for asset type com.apple.MobileAsset.TextInput.SpellChecker

ios 10에서 xcode 8 버전을 사용하고 있습니다. 나는 프로젝트를 사용하는 경우 IOS 9.3 의 작품의 벌금을하지만 사용할 때 같은 프로젝트 IOS (10) 오류 메시지가 나타납니다 자산 정보를 복사 할 수 없습니다 ... .


OS_ACTIVITY_MODE = 비활성화로 설정하면 문제가 해결되지 않고 로그 만 꺼집니다.

문제를 해결하려면 :

1- 스토리 보드에서 TextView를 선택합니다.

2- Xcode 속성 관리자 세트에서 :

수정 = 아니요

맞춤법 검사 = 아니요

3- 고정

http://mesu.apple.com/assets/com_apple_MobileAsset_TextInput_SpellChecker/com_apple_MobileAsset_TextInput_SpellChecker.xml 에서 맞춤법 검사 용 자산을 다운로드하지 못했기 때문에 문제가 발생한 것으로 보입니다 .

도움이 되었기를 바랍니다


나는 아래 해결책으로 끝났다. 단계를 따르십시오.

  • 에서 환경 변수를 설정합니다 Edit Scheme.여기에 이미지 설명 입력
  • xcode를 다시 시작하십시오.
  • xcode를 정리하고 빌드하십시오.

& 내 편에서 완벽하게 작동하는 것보다.


Swift 3 업데이트

@guest 답변이 문제를 해결합니다. 그러나 UITextView프로그래밍 방식 으로 생성하는 경우를 대비하십시오 .

textView.spellCheckingType = .no
textView.autocorrectionType = .no

참조 URL : https://stackoverflow.com/questions/39868842/error-in-ios-10-unable-to-copy-asset-information-from-https-mesu-apple-com-a

반응형