아이폰 개발(129)
-
iPhone 5 Optimization Requirement 문제
Dear developer, We have discovered one or more issues with your recent delivery for "XXXXX". To process your delivery, the following issues must be corrected: iPhone 5 Optimization Requirement - Your binary is not optimized for iPhone 5. As of May 1, all new iPhone apps and app updates submitted must support the 4-inch display on iPhone 5. All apps must include a launch image with the -568h size..
2013.05.27 -
XCode 4.6.1 업데이트 후 "unused entity issue" 에러 발생하면서 컴파일이 안되는 문제
혹시나해서 XCode 업데이트를 미루다가 실수(!!)로 업데이트를 하게 되었다.그런데 역시나 잘 컴파일되던 프로젝트가 "unused entity issue"라는 처음 보는 에러 메시지를 띄우면서 컴파일이 안되는 문제가 발생하였다.다행히 구글링을 통해서 같은 문제로 고민하던 개발자들의 Q&A를 보고 해결은 했으나, 매번 이런 것 때문에 고생해야 하는지 원...https://code.google.com/p/zxing/issues/detail?id=1494"Other Warning Flags"에서 "-Werror"와 "-Wno-unused-parameter" 항목을 제거하고 다시 컴파일 하면 해결된다.
2013.04.08 -
XCode 4.5.2에서 신규로 생성한 프로젝트에서 ZXing 라이브러리 링크 에러 문제
이전 버전 XCode에서 생성된 프로젝트에서는 문제 없이 잘 사용하고 있던 ZXing 라이브러리를 XCode 4.5.2에서 신규로 생성한 프로젝트에 포함시켜서 빌드를 하다가 링크 오류가 발생하였다. 확인 결과, "Build Settings"의 "Apple LLVM compiler 4.1 - Language" 카테고리의 3가지 옵션이 다르다는 것을 알게 되었고 해당 옵션을 이전 버전의 XCode에서 생성된 프로젝트와 동일하게 수정해주니 문제 없이 링크가 되는 것을 확인하였다. C Language Dialect : C99[-std=c99]C++ Language Dialect : Compiler DefaultC++ Standard Library : Compiler Default C Language Dialec..
2013.02.28 -
MKMapView에 경로 그리기 (BreadCrumb 활용)
Apple에서 샘플로 제공하는 BreadCrumb 예제를 참고하면 쉽게 구현할 수 있다.http://developer.apple.com/library/ios/#samplecode/Breadcrumb/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010048-Intro-DontLinkElementID_2 전국 광역시도 위도, 경도값은 아래 사이트를 참고하자.http://blueamor.tistory.com/918 CLLocation *oldLocation = [[CLLocation alloc] initWithLatitude:37.566531 longitude:126.977961]; CLLocation *new1Location = [[CLLocation alloc] ..
2012.11.27 -
APNS Provider 서버 개발 관련
http://www.easyapns.com/ http://code.google.com/p/apns-php/ http://blog.serverdensity.com/2009/07/10/how-to-build-an-apple-push-notification-provider-server-tutorial/
2012.03.29 -
NSString 사용 시에 exc_bad_access 발생하는 경우 대처법
http://tomstechjournal.blogspot.com/2010/03/debugging-excbadaccess-from-nsstring.html 처음 NSString형 변수에 값을 저장한 다음에 retain을 해주면 된다.
2012.01.12