Xcode 패널 소개(..ing)
·
Mobile Application/iOS
* 우측 상단 ( Inspector 패널) (왼쪽부터 순서대로)File inspectorHistory inspectorQuick Help inspectorIdentity inspectorAttributes inspectorSize inspectorConnections inspector
error: sdk does not contain 'libarclite' at the path
·
Mobile Application/iOS
3rd party libraries 추가 후 빌드 에러 발생 Project navigator -> Pods 클릭->TARGETS -> (방금 추가한 라이브러리) -> General -> Minimum DeploymentsiOS 버전을 12.0 으로 변경한다그리고 Clean Build 후 Build 하면 해결    * 개발환경 *MacOS : Sonoma 14Xcode : ver 15.0Minimum Deployments : 17.0
Cocoa Pod 정리
·
Mobile Application/iOS
pod init : podfile 생성pod install : pod 설치 (Podfile.lock, Pods...등 생성)
Cocoa (touch) Framework
·
Mobile Application/iOS
Cocoa Framework 기본적인 자료형과 메소드가 정의되어 있는 Foundation은 동일하고 AppKit 대신 AppKit에 기반한 UIKit을 사용한다.   Cocoa (Touch) : (Application) UIKit, GameKit, MapKitMedia : AV Foundation Core, Animation Core, Audio Core, Image Core, Text OpenAI, OpenGICore Services : Foundation Core, Location Core, Motion Core, Data WebKit => Foundation KitCore OS : Directory Services Accelerate OpenCL System Configuration => 환경설정,..
[Xcode] NSLog Debug모드에서만 출력 (한번만 명령어)
·
Mobile Application/iOS
http://mingu.kr/60
[Xcode6] arm64에서 Build할때 Value 오류
·
Mobile Application/iOS
32bitlong* value = (long*) [characteristic.value bytes]; //-> (long *) value = 0x12345678  64bitlong* value = (long*) [characteristic.value bytes]; //-> (long *) value = 0x0000000123456780   각각 빌드하였을때 값이 달라진 경우 #ifdef __LP64__NSLog(@"64-bit");int* value = (int*) [characteristic.value bytes];#elseNSLog(@"32-bit");long* value = (long*) [characteristic.value bytes]; #endif 으로 수정해준다.   참조: http://ip..
[iOS] swipe로 tableViewcell Delete할때 죽는 문제 (UITableViewCellEditingStyleDelete)
·
Mobile Application/iOS
UITableViewCellEditingStyleDelete모드에서 swipe로 cell을 삭제할때 간헐적으로 죽는 문제 -(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{............ dispatch_async(dispatch_get_main_queue(), ^{[tableView reloadData];});}  thread로 처리.