본문 바로가기
반응형

ios73

[iOS - Error] CoreData SQLite error “The database disk image is malformed” 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Error 2022.06.05. 15:40 2022.07.11. 20:03 Dev.Yang 🔧 에러 내용 (Error Message) “The database disk image is malformed” 발생하는 이유는 아래의 도표와 같습니다. 🇺🇸 Corruption in SQLite files that make the data inaccessible 🇰🇷 SQLite Database 파일 내부에 데이터에 접근을 할 수 없도록 하는 경우 🇺🇸 When a non-SQLite database file is forcefully opened in SQLite database 🇰🇷 SQLite Database 파일 내부에서 Non-SQLite Datab.. 2022. 6. 5.
[iOS - Error] nib must contain exactly one top level object which must be a UITableViewCell instance 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Error 2022.04.30. 20:03 2022.04.30. 20:03 Dev.Yang 🔧 에러 내용 (Error Message) nib must contain exactly one top level object which must be a UITableViewCell instance 🔧 에러 해결방법 (Error Solution) .xib 파일 내부에 2개 이상의 UIView가 존재하는 경우에 발생하므로 하나의 UIView만 남겨두어야 합니다. 🚀 REFERENCE 더보기 2022. 4. 30.
[iOS - Error] Your project does not explicitly specify the CocoaPods master specs repo. Since CDN is now used as the default, you may safely remove it from your repos directory via 'pod repo remove master' 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Error 2022.04.17. 12:10 2022.04.17. 12:10 Dev.Yang 🔧 에러 내용 (Error Message) [!] Your project does not explicitly specify the CocoaPods master specs repo. Since CDN is now used as the default, you may safely remove it from your repos directory via `pod repo remove master`. To suppress this warning please add `warn_for_unused_master_specs_repo => false` to your Podfi.. 2022. 4. 17.
[ObjectiveC] Objective-C 요약 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 C/C++ 2022.03.31. 22:24 2023.08.09. 22:09 Dev.Yang 🛠 메서드 (Method) 🛠 Objective-C 동작 방식 Objective-C 언어는 C언어를 근간으로 동작하고 있으며 추가적으로 아래의 4가지 조건을 통하여 작동하고 있습니다. 첫번째는 인스턴스 변수 (Instance Variable)는 구조체 (Struct)에 저장됩니다. 새 클래스와 그에 속한 인스턴스 변수를 정의하면, 이 인스턴스 변수들은 사실 구조체 안에 저장이 됩니다. 실제로는 객체는 인스턴스 변수로 멤버들이 구성 된 구조체로 볼 수 있습니다. 구조체의 상속받은 멤버 중에 보호 멤버 isa (루트 객체에게서 상속 받은 정보)가 있는데, 이것이.. 2022. 3. 31.
반응형