IOS(4)
-
[iOS] Unable to boot device in current state: Booted
리액트네이티브에서 ios 시뮬레이터 실행시 Unable to boot device in current state: Booted 라는 문구가 거슬린다면 시뮬레이터 선택 후 Command + [ , ] = Simulator Settings 열고 위 화면(Settings) 에서 Simulator Lifetime : When Simulator starts boot the most recently used simulator 체크를 해제 하면 더이상 안뜬다.
2023.04.20 -
Xcode - 빌드 오류 Development cannot be enabled while your device is locked.
기기가 잠겨있는 동안에는 개발을 사용 할 수 없습니다..Development cannot be enabled while your device is locked. 맥에 아이폰을 연결 할 당시 뭔가를 하고 있거나 해서.. 신뢰 버튼을 누르지 않은 경우에 발생 함. 설정 > 일반 > 재설정 > 위치 및 개인 정보 보호 재설정 누른 뒤 다시 선을 뺐다가 꼽으면 신뢰하시겠습니까? 가 뜨고 신뢰를 누르면 잘 됨 :) [출처] Xcode 빌등 오류 - Development cannot be enabled while your device is locked.|작성자 팀리얼리
2017.04.29 -
[ios]DocumentDirectory 경로!
아이폰에 다운로드 혹은 그 다운로드 된 파일을 읽기만이 아닌 수정 삭제가 가능하게 하려면필히 Document로 그 파일을 갖다놔야 컨트롤이 가능하다고 들었다... 그 경로로 가는 방법 ! //document 경로 = 읽기 이외의 수정 삭제도 가능함. NSArray *PATH = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *document = [PATH objectAtIndex:0]; NSLog(@"document : %@", document);
2013.06.05 -
[ios]NSString to std::string & std::string to NSString
cocos2d-x를 쓰다보면 objectiv c와 cpp의 언어를 같이 사용할 때가 있다..그래서! NSString 과 std::string의 형변환이 필요할 터 ! //NSString 에서 std::string로 형변환 테스트 NSString to string string NSString_To_string = [document UTF8String]; cout
2013.06.05