앱 리뷰 신청 결과 8일만에 리젝. 내용은 다음과 같다. Thank you for your resubmission. However, here is our finding: 20.2 Details Your app includes a contest but it does not: - Include official rules for the iPad Giveaway event, which is required. - Indicate that Apple is not involved in any way with the contest. Next Steps It is necessary to: - Include official rules of the contest or sweepstakes in the app - Includ..
APNS등록시 iOS 8 버전부터 변경 됨. if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]){//iOS8UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];[[UIApplication sharedApplication] registerUserNotificationSettings:notificationSett..
준비물 : 4GB용량 이상의 USB와 윈도우7 iso설치파일진행 순서 : 응용프로그램 > 유틸리티 > Boot Camp 지원 > USB포멧, 윈도우 지원 소프트웨어 다운, 윈도우 USB설치 > 파티션 설정 >재부팅 > 윈도우 설치 진행 > 파티션 포멧(BOOTCAMP, 4번째 것) > BOOTCAMP 선택하여 설치 > 윈도우 설치 완료 후 USB의 BootCamp 폴더에서 유틸리티 실행 > 하드웨서 설정완료!! - 별도로 소프트웨어 다운, 파티션 생성을 하실필요 없습니다. 부트캠프에서 전부 다 지원 됩니다. - 부팅 시 윈도우로 부팅하기 위해서는 option('alt')키를 부팅 초기에 누르고 계시면 됩니다. 문제1. 윈도우 설치도중 파티션 선택창에서 오류 메시지가 나왔을 경우 해결 방법은 다음과 같습니..
기존 개발된 기능들을 배포할 일이 생겨 프레임워크를 생성하게 되었다.라이브러리 형태로 배포를 해도 되지만 해더파일까지 보여야 했기에 자료를 검색!!영문으로 된 자료를 친절하게도 한글로 번역해 주신 분의 자료를 찾을 수 있었다. (감사합니다~^^) ios 라이브러리를 Framework 형태로 만들기 및 배포. 아직 정식적으로 소스를 생성하여 활용해 보지 않았지만 기본 셈플을 만드는데에 상당한 시일이 걸렸다. 그놈의 버그..작업 중간중간 혹시 모를 에러가 발생할까 싶어 종종 빌드를 진행하였다.하지만 최종적으로 새로운 프로젝트에 생성된 프레임워크를 추가하였지만 다음과 같은 에러가 발생하였다. linker command failed with exit code 1 (use v to see invocation)이 ..
MOV확장자로 저장된 파일을 mp4형식으로 저장하던 중 문제가 발생하였다.에러 메시지는 다음과 같다."The requested URL was not found on this server." - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info NSURL *url = [info objectForKey:UIImagePickerControllerMediaURL] [self convertVideoMp4:[url absoluteString]]; info에 넘어오는 URL을 통하여 바로 mp4로 저장하려 하였으나 에러가 발생하였다.아무래도 저장 시 넘어오는 UIIm..
MPMoviePlayerViewController를 사용하여 동영상 재생중 에러 발생. CGContextSaveGState: invalid context 0x0 CGContextClipToRect: invalid context 0x0 CGContextTranslateCTM: invalid context 0x0 CGContextDrawShading: invalid context 0x0 CGContextRestoreGState: invalid context 0x0 "Error Domain=MediaPlayerErrorDomain Code=-1 \"unknown error\" UserInfo=0x1d5f20b0 {NSLocalizedDescription=unknown error}";다음과 같은 에러를 토해내고..
iOS7 에서 메일보내기나 동영상 재생등의 전체 화면으로 처리되는것들을 호출하게 되면 상단 statusbar가 겹치는 문제가 발생하게 된다.이를 해결하기 위해서 해당 이벤트를 종료시켰을 경우 프레임을 다시 조정해 주었다.화면 구조는 window에 navigationController을 addSubView한 형태로 개발되었으며 이후 추가되는 화면에 대해서는 [self.navigationController pushViewController:??] 구조로 구성하였다. info.plist에서 View controller-based status bar appearance 속성은 NO로 설정하였다. 1. appdelegate 에서 Y값을 0에서 20으로 수정하였다.self.window.frame = CGRectMa..