xcode
-
개발자 인증서 , 기기 등록하기 , identifiers 등등등IOS 2017. 2. 13. 17:41
안녕하세요. 앱 스토어에 배포를 원하신다면 http://itdevelop.kr/79 member Center -> Certificates, Identifiers & Profiles Certificates -> IOS App Development -> CSR 파일 생성 [CSR 파일 생성] -- [이동]-[응용프로그램]-[유틸리티]-[키체인 접근] 어플을 실행-- 키체인 접근 어플의 메뉴에서 [키체인 접근]-[인증서 지원]-[인증 기관에서 인증서 요청...] 선택 -- 사용자 이메일과 이름을 입력하고 [디스크에 저장됨]을 누른다.-- 이름저장(Magnexpay (기본네임 : CertificateSigningRequest.certSigningRequest))--> CSR 파일 생성 완료! CSR 파일을 생성..
-
tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread. Crashing now...IOS 2017. 2. 6. 18:53
tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread. Crashing now... 스레드 안에서 > 스레드 또 호출하거나 , 웹의 자바스크립트를 사용할려고 하니까 나왔다... 스레드에서 메소드를 콜 할땐, [self performSelectorOnMainThread:@selector(CardUpdate) withObject:NULL waitUntilDone:YES]; -(void)CardUpdate{ if(cardnum ==@"" || cardexpmon ==@"" || cardexp..
-
XCODE 에서 Frameworks 추가하기IOS 2016. 12. 23. 18:06
안녕하세요~ 외부 프레임워크를 가져와서 사용할 일이 생겻네요! 이번 프레임 워크를 추가하면서 느낀게 참 쉽다! 였습니다. 안드로이드는 라이브러리 처음 추가할때 경로 안잡히고 ㅠㅜ 오류 뻑뻑터져서 고생좀 했는데 Xcode 는 참 쉽게 되어있네요 ---------------------- 간단히, 추가할프레임워크이름.frameworks 추가할 프레임 워크는 당연히 준비되어있겟죠?? 이걸 프로젝트의 적당한 경로에 넣어주세요. 저는 프로그램 소스있는곳에 Frameworks 로 폴더를 생성해서 그 안에 넣어놨습니다. 그다음 그 Frameworks 폴더를 Xcode 로 당겨서 추가하면 끝!! 정상적으로 추가되었는지 확인은 General -> Linked Frameworks and Libraries 에 프레임 워크가 ..
-
The app's Info.plist must contain an NSMicrophoneUsageDescription key with a string value explaining to the user how the app uses this data.IOS 2016. 12. 23. 17:07
안녕하세요. IOS 10.0 에서부터는 아래와 같은 문제가 발생합니다. The app's Info.plist must contain an NSMicrophoneUsageDescription key with a string value explaining to the user how the app uses this data. 위와 같은 오류 문구가 나왓다면 아이폰 마이크에 접근하려는 권한을 요청했던거겟지요??? 저는 이어폰 잭을 통해 데이터 통신할게 있어서 오류가 나왔는데요 이런 문제는 간단히 info.plist 파일을 열어서 Privacy - Microphone Usage Description 이걸 붙여 넣으면 됩니다. Privacy - Microphone Usage Description string 타입..